songs/templates/base.html.twig

52 lines
1.9 KiB
Twig

<html lang="en">
<head>
<title>{{ title ? title ~ " - " : "" }}Schmoppo's Songs!</title>
<link rel="stylesheet" href="static/pico.classless.pink.min.css">
<link rel="stylesheet" href="static/own.css">
<script src="static/buttons.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<main>
<header>
<nav>
<ul>
{% block actions_left %}
<li>
<label class="sidebar-toggler">
<svg viewBox="0 0 448 512" width="100">
<path d="M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z" />
</svg>
<input type="checkbox" />
</label>
</li>
{% endblock %}
<li><h3 class="mb-0">{{ title }}</h3></li>
</ul>
<ul>
{% block actions_right %}
<li>
<button type="button" class="secondary color-theme-toggle">🌙</button>
</li>
{% endblock %}
</ul>
</nav>
</header>
{% block main %}
<aside class="sidebar">
<nav>
{% block scores %}
<ul>
{% for score in scores %}
<li><a href="?score={{ score|url_encode }}.md">{{ score }}</a></li>
{% endfor %}
</ul>
{% endblock %}
</nav>
</aside>
{% block content %}
{% endblock %}
{% endblock %}
</main>
</body>
</html>