website/templates/section.html
Chinmay D. Pai 6d929483e2
feat: rewrite blog in zola
Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
2021-05-28 00:10:50 +05:30

16 lines
341 B
HTML

{% extends "index.html" %}
{% block content %}
<article class="page">
<header class="page-header">
{% if not section.extra.hide_title %}
<h1 class="page-title">{{ section.title }}</h1>
{% endif %}
</header>
{% block seccontent %}
{{ section.content | safe }}
{% endblock seccontent %}
</article>
{% endblock content %}