This commit is contained in:
samaradel
2022-07-21 20:49:10 +02:00
parent 16c105ed66
commit 375d6f9deb
2 changed files with 18 additions and 0 deletions

4
templates/tags/list.html Normal file
View File

@@ -0,0 +1,4 @@
{% extends "index.html" %}
{% block content %}
{% endblock content %}

View File

@@ -0,0 +1,14 @@
{% extends "index.html" %}
{% block content %}
<main class="pt-16">
<div class="flex flex-col md:flex-row">
{% include "partials/tagsCards.html" %}
{% include "partials/tagsSidebar.html" %}
</div>
</main>
{% endblock content %}