My-Website/app/templates/music.html

49 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<header>
<link rel="shortcut icon" href="index_favicon.ico">
<link rel="stylesheet" href="{{ url_for('static', filename='style2.css') }}">
<title>0x01fe.net - {{ title }}</title>
</header>
<body>
<h1>{{ title }}</h1>
<p>{{ status|safe }}</p>
<h1>Stuff</h1>
<ul class="sidebar">
<li><a href="/"><u>Home</u></a></li>
<li><a href="/category/games/">Games</a></li>
<li><a href="/music/">Music</a></li>
<li><a href="/category/motion-pictures/">Motion Picture</a></li>
<li><a href="/programming/">Programming</a></li>
<li><a href="/about/">About</a></li>
</ul>
<!-- Main Page -->
<!-- Get it? D-Log? Like digital log? -->
<div class="dlog">
{% for post in posts %}
<div class="post">
<div class="post-date">
{{ post.date_str }}
</div>
{{ post.body|safe }}
</div>
{% endfor %}
</div>
<div class="albums">
<h1>Top Albums</h1>
<div class="real-albums">
{% for album in top_albums %}
<a title="{{ album.album_name}} by {{ album.artist_name }} - {{ album.listen_time }} Hours">
<img src="{{ album.album_cover }}">
</a>
{% if loop.index % 3 == 0 %}
<br>
{% endif %}
{% endfor %}
</div>
</div>
</body>
</html>