Additional Clean Up, Favicons, etc.

This commit is contained in:
2026-04-15 22:03:19 -05:00
parent 105d897c64
commit 4e1fb5e5ec
17 changed files with 887 additions and 9 deletions

34
templates/license.html Normal file
View File

@@ -0,0 +1,34 @@
{% extends "base.html" %}
{% block head %}
<link rel="stylesheet" href="{{ url_for('static', filename='dialog.css') }}">
{% endblock %}
{% block content %}
<main>
<div>
<h2>Licenses and Sources</h2>
<h3>Icolotl Index</h3>
<p>This website is licensed under the <a href="https://www.gnu.org/licenses/agpl-3.0.en.html">GNU Affero General
Public License (Version 3 or Later)</a>. Its source code can be found at Avalon Repos <a
href="https://git.icolotl.com/Avalon/index">here</a>. </p>
<h3>Fonts</h3>
<p>We use fonts licensed under the <a href="https://openfontlicense.org/open-font-license-official-text/">SIL
Open Font License Version 1.1</a></p>
<ul>
<li><a href="https://github.com/JulietaUla/Montserrat">Montserrat</a></li>
</ul>
<h3>Software</h3>
<p>The Index is built on the following open source or source-available software. Thank you!</p>
<ul>
<li><a href="https://flask.palletsprojects.com/en/stable/">Flask</a></li>
<li><a href="https://www.mongodb.com/products/self-managed/community-edition">MongoDB</a></li>
<li><a href="https://gunicorn.org/">Gunicorn</a></li>
<li><a href="https://docs.python-requests.org/en/latest/index.html">Requests</a></li>
<li><a href="https://www.python.org/">Python</a></li>
<li><a href="https://nginx.org/en/">Nginx</a></li>
<li><a href="https://archlinux.org/">Arch Linux</a></li>
</ul>
</div>
</main>
{% endblock %}