73 lines
2 KiB
Twig
73 lines
2 KiB
Twig
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
{{ snippet('metadata') }}
|
|
{{ snippet('favicon') }}
|
|
|
|
{# CSS #}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="build/main.css">
|
|
{% endblock %}
|
|
|
|
{# JavaScript #}
|
|
{% block scripts %}
|
|
<script src="build/app.js"
|
|
defer>
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{# Umami #}
|
|
<script src="https://umami.paulnicoue.com/script.js"
|
|
data-website-id="836d3151-0470-4a49-a511-75851d501e09"
|
|
data-domains="julienmonnerie.com"
|
|
defer>
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app">
|
|
|
|
{% block header %}
|
|
<header>
|
|
<a class="header__logo"
|
|
href="{{ logoHref }}"
|
|
target="_self"
|
|
aria-label="{{ logoAriaLabel }}">
|
|
</a>
|
|
</header>
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
<footer>
|
|
{% if instagram.isNotEmpty %}
|
|
<a class="footer__link footer__instagram-link"
|
|
href="{{ instagram }}"
|
|
target="_blank"
|
|
aria-label="Go to {{ site.title }}'s Instagram profile">
|
|
{{ svg('images/feather-instagram-custom.svg') | raw }}
|
|
</a>
|
|
{% endif %}
|
|
{% if email.isNotEmpty %}
|
|
<a class="footer__link footer__mail-link"
|
|
href="mailto:{{ email }}"
|
|
target="_blank"
|
|
aria-label="Write an email to {{ site.title }}">
|
|
{{ svg('images/feather-mail-custom.svg') | raw }}
|
|
</a>
|
|
{% endif %}
|
|
</footer>
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|