summaryrefslogtreecommitdiff
path: root/home/templates/home/home_page.html
blob: d8e296cc440affd646da7cd6da609786de23284c (plain) (blame)
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
{% extends "base.html" %}

{% load wagtailcore_tags %}

{% block body_class %}template-homepage{% endblock %}

{% block content %}
<div class="container">
    <div class="row">
      {# Post Content Column  #}
      <div class="col-lg-8">
        {# Title #}
        <h1 class="mt-4">{{ page.title }}</h1>

        <hr>

        {% include_block page.body %}
      </div>

      {# Sidebar Widgets Column  #}
      <div class="col-md-4">
        {% include "search.html" %}
      </div>
    </div>
</div>
{% endblock %}