easier example

This commit is contained in:
despiegk
2022-07-23 10:09:10 +02:00
parent 1202f807ef
commit 5ee6f8e0ff
92 changed files with 4469 additions and 1 deletions

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/blogPosts.html" %}
{% include "partials/blogSidebar.html" %}
</div>
</main>
{% endblock content %}