pelican-alchemy/alchemy/templates/page.html
Raymond Wanyoike 27de618fdb article.summary, and page.summary are always set
Pelican will use `Summary:` or trim the content
2016-11-07 10:07:44 +03:00

22 lines
390 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 %}
<div class="page">
<div class="page-main">
{{ page.content }}
</div>
</div>
{% endblock %}