1
0
mirror of https://github.com/avinal/avinal.github.io.git synced 2026-07-03 23:30:09 +05:30
Files
avinal.github.io/themes/alchemy/templates/page.html
T
2020-09-29 11:19:46 +05:30

22 lines
398 B
HTML

{% extends "base.html" %}
{% block head %}
{{ super() }}
<meta name="description" content="{{ page.summary|striptags }}">
{% endblock %}
{% block title %}
{{ page.title|striptags }} {{ super() }}
{% endblock %}
{% block page_header %}
{{ page.title }}
{% endblock %}
{% block content %}
<article class="article">
<div class="content">
{{ page.content }}
</div>
</article>
{% endblock %}