aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/page.html
blob: 45020fe7713b6a89d2ae7d8d50b25eb28b226cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{% extends "base.html" %}
<!-- TEMPLATE: PAGE -->

{% block title %}{{ page.title }} - {{ super() }}{% endblock title %}
{% block description %}{{ page.content|striptags|truncate(200)|escape }}{% endblock description %}

<!-- {% block headerstyle %}
    {% if page.illustration %}
    <div class="header-container" style="background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('{{ SITEURL }}/images/{{ page.illustration }}'); background-position: center; ">
    {% elif NEST_HEADER_IMAGES %}
    <div class="header-container" style="background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('{{ SITEURL }}/images/{{ NEST_HEADER_IMAGES }}'); background-position: center; ">
    {% else %}
    <div class="header-container gradient">
    {% endif %}
{% endblock headerstyle %} -->

{% block header %}
    <div class="container header-wrapper">
      <div class="row">
        <div class="col-lg-12">
           <div class="header-content">
            <h1 class="header-title text-uppercase">{{ page.title }}</h1>
            <div class="header-underline"></div>
          </div>
        </div>
      </div>
    </div>
{% endblock header %}

{% block content %}

<div class="col-lg-9 content">
  {{ page.content }}
</div>

{% endblock %}