feat(templates): introduce info-page template (#147)

This commit is contained in:
Óscar
2023-09-13 01:38:25 +02:00
committed by GitHub
parent 355162ebe1
commit 6f269eee4a
29 changed files with 180 additions and 47 deletions

17
templates/info-page.html Normal file
View File

@@ -0,0 +1,17 @@
{# Template for non-articles (About Me, Privacy…) #}
{% extends "base.html" %}
{%- block main_content %}
{{ macros_page_header::page_header(title=page.title) }}
<div id="page-content">
<main>
{{ page.content | safe }}
</main>
</div>
{%- include "partials/extra_features.html" -%}
{%- endblock main_content %}