TO be Completed.

This commit is contained in:
David Soulayrol
2023-01-14 15:21:03 +01:00
parent 79855006b3
commit df04cf08df
12 changed files with 3148 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 %}