feat: add placeholder and rearrange files

This commit is contained in:
sthag 2024-08-08 20:42:28 +02:00
parent 8eb377717a
commit b17e16abd9
22 changed files with 90 additions and 51 deletions

View file

@ -37,7 +37,6 @@
</div>
<nav>
<ul class="list_link">
<!-- Loops through "demoadditionallinks" array -->
{% for link in index %}
<li>
<a href="{{ link.href }}">{{ link.text }}</a>
@ -47,13 +46,20 @@
</nav>
<h3>Pages</h3>
<ul class="list_link">
<!-- Loops through "demo-links" array -->
{% for link in pages %}
<li>
<a href="{{ link.href }}">{{ link.text }}</a>
</li>
{% endfor %}
</ul>
<h3>Demo</h3>
<ul class="list_link">
{% for link in demo %}
<li>
<a href="{{ link.href }}">{{ link.text }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
{% endblock %}