Implemented the python draft

This commit is contained in:
2025-01-08 14:59:36 +01:00
parent f962dbb31c
commit 8f96346a6b
29 changed files with 350 additions and 86 deletions

View File

@@ -0,0 +1,23 @@
{% extends "base.html" %}
{% block content %}
<div class="row">
{% for card in cards %}
{% include "card.html.j2" %}
{% endfor %}
</div>
<div class="row">
<div class="col">
<h3>Networks</h3>
<ul>
{% for network in networks %}
<li>
<a href="{{ network.link }}">
<i class="{{ network.icon }}"></i> {{ network.name }}
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
{% endblock %}