18 lines
422 B
HTML
18 lines
422 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% load static %}
|
|
{% load thumbnail %}
|
|
|
|
{% block content %}
|
|
{% include 'includes/breadcrumbs_dark.html' %}
|
|
<section class="sect">
|
|
<div class="container">
|
|
<h2 class="h2 sectHead">
|
|
{{ page.title }}
|
|
</h2>
|
|
<div class="content">
|
|
{{ page.content|safe }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %} |