19 lines
330 B
HTML
19 lines
330 B
HTML
{% extends "base.html" %}
|
|
{% import "macros/page_title.html" as pt %}
|
|
|
|
{% block content %}
|
|
|
|
{{ pt::page_title(title=page.title) }}
|
|
|
|
<section class="ptb-100">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
{{ page.content | safe }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{% endblock %}
|