mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
5f19e7b38e
* URL keys and internal keys are now being separated more cleanly * HTML generation is split up into submodules that can be used by serveral websites * HTML generation now talks directly to the database in most cases instead of calling the database server for json data
30 lines
535 B
HTML
30 lines
535 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Maloja - Top Artists in KEY_RANGE</title>
|
|
<link rel="stylesheet" href="maloja.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<table class="top_info">
|
|
<tr>
|
|
<td class="image">
|
|
<div style="background-image:url('KEY_TOPARTIST_IMAGEURL')"></div>
|
|
</td>
|
|
<td class="text">
|
|
<h1>Top Artists</h1><br/>
|
|
<span>in KEY_RANGE</span>
|
|
<!--<p class="stats">KEY_SCROBBLES Scrobbles</p>-->
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
KEY_ARTISTLIST
|
|
|
|
</body>
|
|
</html>
|