Support du calendrier sur la page d'accueil.

This commit is contained in:
David Soulayrol
2023-01-14 15:21:03 +01:00
parent 79855006b3
commit 92c20c004d
13 changed files with 3197 additions and 21 deletions

17
layouts/calendar.njk Normal file
View File

@@ -0,0 +1,17 @@
{% extends "base.njk" %}
{% block head %}
<script type='text/javascript' src="/js/calendrier.js"></script>
{% endblock %}
{% block article %}
<h1 class="mt128">Calendrier</h1>
<div id="calendar" />
<script type='text/javascript'>
window.onload = function(event) {
Calendar.fill(document.getElementById('calendar'))
}
</script>
{% endblock %}