mixtape/templates/index.html

21 lines
538 B
HTML
Raw Normal View History

2024-02-06 14:18:25 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{{ config.title }}{% endblock %}</title>
<link rel="stylesheet" href="{{ get_url(path="/style.css") }}">
<link rel="icon" href="favicon.svg">
</head>
<body>
{% block content %}
<ul>
{% for song in section.pages %}
<li><a href="{{ song.permalink }}">{{ song.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}
{% block script %}{% endblock %}
</body>
</html>