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/theme/templates/page-title.html

26 lines
586 B
HTML
Raw Normal View History

2016-06-10 18:12:00 +01:00
{% extends "base.html" %}
{% block htmltitle %}
{{ page.html_title or page.title }}
{% endblock %}
2016-06-12 11:34:20 +01:00
{% block metadata %}
{% for tag, value in page.ogtags %}
<meta property="{{ tag }}" content="{{ value|striptags|e }}" />
{% endfor %}
{% endblock %}
2016-06-10 18:12:00 +01:00
{% block content %}
<section class="bg-primary">
<div class="container text-center text-uppercase">
<h1 class="section-heading uppercase">{{ page.title }}</h1>
<hr class="light">
</div>
</section>
<section>
<div class="container">
{{ page.content }}
</div>
</section>
{% endblock %}