initial commit

This commit is contained in:
timurgordon
2022-02-03 14:39:30 +03:00
commit 6092adaa9b
70 changed files with 7123 additions and 0 deletions

14
templates/blog/blog.html Normal file
View File

@@ -0,0 +1,14 @@
{% extends "_default/base.html" %}
{% block content %}
<main class="pt-16">
{%- set section = get_section(path="blog/featured/_index.md") %}
{% include "partials/featuredBlog.html" %}
<div class="flex">
{% include "partials/blogPosts.html" %}
{% include "partials/blogSidebar.html" %}
</div>
</main> {% endblock content %}