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-28 17:05:15 +05:30

23 lines
417 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 %}