mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2025-12-27 02:56:39 +00:00
Implemented the python draft
This commit is contained in:
23
app/templates/pages/index.html.j2
Normal file
23
app/templates/pages/index.html.j2
Normal 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 %}
|
||||
Reference in New Issue
Block a user