etiquette/templates/albums.html

36 lines
660 B
HTML

<!DOCTYPE html5>
<html>
<head>
{% import "header.html" as header %}
<title>Albums</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="/static/common.css">
<style>
#content_body
{
flex-direction: column;
}
</style>
</head>
<body>
{{header.make_header()}}
<div id="content_body">
{% for album in albums %}
{% if album["title"] %}
{% set title=album["id"] + " " + album["title"] %}
{% else %}
{% set title=album["id"] %}
{% endif %}
<div><a href="/album/{{album["id"]}}">{{album["id"] + " " + album["title"]}}</a></div>
{% endfor %}
</div>
</body>
<script type="text/javascript">
</script>
</html>