LSBC/templates/base.html.twig

25 lines
670 B
Twig

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}LSBC{% endblock %}</title>
{% block stylesheets %}
<style>
img { max-width: 100%; }
.help-text { font-size: 0.8em; }
</style>
<link rel="stylesheet" href="/simple-v1.min.css">
{% endblock %}
</head>
<body>
{% if app.user %}
<nav>
<a href="{{ path('app_podcast_index' )}}">Manage podcasts</a>
<a href="{{ path('app_episode_index' )}}">Manage episodes</a>
</nav>
{% endif %}
{% block body %}{% endblock %}
</body>
</html>