1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/templates/blog/blog_page.html
2016-12-19 18:50:39 +00:00

17 lines
373 B
HTML

{% extends "base.html" %}
{% load wagtailcore_tags %}
{% block body_class %}template-blogpage{% endblock %}
{% block content %}
{% include 'common/header.html' %}
<section>
<div class="container">
<p class="text-right small">
Published: {{ page.date|datetime }}
</p>
{% include_block page.body %}
</div>
</section>
{% endblock %}