Files
netslim-blog/templates/Kernel/layout_picker.twig
2026-03-20 22:16:20 +01:00

25 lines
691 B
Twig
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{{ site.title }} Médiathèque{% endblock %}</title>
{% block meta %}
<meta name="description" content="Sélecteur de médias de {{ site.title }}.">
{% endblock %}
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="stylesheet" href="/assets/css/main.css">
{% block styles %}{% endblock %}
</head>
<body class="picker-layout">
<main class="picker-layout__inner">
{% block content %}{% endblock %}
</main>
{% block scripts %}{% endblock %}
</body>
</html>