pelican-alchemy/alchemy/templates/page.html
Raymond Wanyoike 8b0903ec8e Add missing HTML img alt attribute
Wrap content body in div

Add title class to titles

Show icons with the teaser metadata

Visual improvements
2016-11-30 21:46:02 +03:00

22 lines
399 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 %}