Files
site_internet/templates/base.html
2026-03-07 14:57:29 +01:00

26 lines
821 B
HTML

<!DOCTYPE html>
<html lang="fr">
{% block head %} {% endblock 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/CV.md')}}">CV</a></li>
</ul>
</nav>
<section>
{% block content %} {% endblock content %}
<section>
</body>
<footer>
<small id="footer-text">© <script>document.write(new Date().getFullYear())</script> Hatmos. All Rights Reserved.</small>
</footer>
</html>