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

18 lines
402 B
HTML
Raw Normal View History

2016-11-24 21:44:08 +00:00
{% extends "base.html" %}
{% load wagtailcore_tags wagtailimages_tags %}
{% block body_class %}template-blogpage{% endblock %}
{% block content %}
2016-11-26 12:59:52 +00:00
{% include 'common/header.html' with page=page %}
<section>
<div class="container">
<p class="text-right small">
Published: {{ page.date|datetime }}
</p>
{{ page.body|richtext }}
</div>
</section>
2016-11-24 21:44:08 +00:00
{% endblock %}