Go licenses as markdown template

This commit is contained in:
William Bouzourène 2025-05-11 16:21:38 +02:00
parent d37958fc37
commit 614f15e1f1
Signed by: bouzoure
SSH key fingerprint: SHA256:19MbXpLua4rUtk8tunMesD8KUKb91LXLHg8E/qTooww
12 changed files with 1064 additions and 1587 deletions

File diff suppressed because it is too large Load diff

20
views/licenses.html Normal file
View file

@ -0,0 +1,20 @@
{% extends "layouts/main.html" %}
{% block main %}
<div id="licenses" class="container-fluid p-3">
{{ Markdown|safe }}
</div>
{% endblock %}
{% block stylesheet %}
<style>
#licenses h2 {
font-weight: bold;
margin: 15px 0;
}
#licenses p {
margin: 0;
}
</style>
{% endblock %}