initial commit
This commit is contained in:
16
templates/page.html
Normal file
16
templates/page.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<section class="oc-section">
|
||||
<div class="oc-container oc-section-header">
|
||||
<h1>{{ page.title }}</h1>
|
||||
{% if page.description %}
|
||||
<p class="oc-section-description">{{ page.description }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="oc-container oc-content">
|
||||
{{ page.content | safe }}
|
||||
</div>
|
||||
</section>
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user