eorzea-songbook/templates/songpage.jinja

22 lines
517 B
Django/Jinja

<!DOCTYPE html>
<html lang="en">
<head>
<title>title</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>Now Playing: {{ id }}. {{ name }} ({% for _, _, _, album_code in album_info %}{{ album_code }}{% if not loop.last %}, {% endif %}{% endfor %})
</h1>
<p>Artist: </p>
<p>Album: </p>
<ul>
{% for album_id, track, album_name, album_code in album_info %}
<li>{{ album_name }} #{{ track }}</li>
{% endfor %}
</ul>
<p>Clips: </p>
</body>
</html>