blag/theme-fred/templates/page.html

11 lines
262 B
HTML
Raw Normal View History

2016-08-03 02:36:43 -04:00
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<header>
<h1><a href="{{ SITEURL }}/{{ page.slug }}" id="page-title">{{ page.title }}</a></h1>
</header>
<article>
{{ page.content }}
</article>
{% endblock %}