32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
<head>
|
|
{% include "partials/head.html" %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1><a class="home" href="https://www.hatmos.xyz/">Le site de Hatmos</a></h1>
|
|
</header>
|
|
<nav>
|
|
<ul class="nav-list">
|
|
<li class="nav-element"><a class="nav-link" href="{{ get_url(path='@/accomplissements/_index.md')}}">Accomplissements</a></li>
|
|
<li class="nav-element"><a class="nav-link" href="{{ get_url(path='@/objectifs/_index.md')}}">Objectifs</a></li>
|
|
<li class="nav-element"><a class="nav-link" href="{{ get_url(path='@/CV.md')}}">CV</a></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="layout">
|
|
<main class="main-content">{% block content %} {% endblock content %}</main>
|
|
{% if page.extra.aside %}
|
|
<aside>
|
|
{% include "partials/aside.html" %}
|
|
</aside>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
<footer>
|
|
<small class="footer-text">© <script>document.write(new Date().getFullYear())</script> Hatmos. All Rights Reserved.</small>
|
|
<small class="footer-text"><a href="{{ get_url(path='@/copains.md')}}">Chez les copains</a></small>
|
|
</footer>
|
|
</html>
|