31 lines
690 B
Twig
31 lines
690 B
Twig
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Slim Blog{% endblock %}</title>
|
|
{% block meta %}
|
|
<meta name="description" content="Un blog propulsé par Slim 4.">
|
|
{% endblock %}
|
|
<link rel="icon" type="image/png" href="/favicon.png">
|
|
<link rel="stylesheet" href="/assets/css/main.css">
|
|
{% block styles %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include 'partials/_header.twig' %}
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
{% include 'partials/_footer.twig' %}
|
|
|
|
{% block scripts %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|