12 lines
233 B
HTML
12 lines
233 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% load wagtailcore_tags %}
|
||
|
|
||
|
{% block body_class %}template-indexpage{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>{{ page.title }}</h1>
|
||
|
|
||
|
<div class="intro">{{ page.intro|richtext }}</div>
|
||
|
{% endblock %}
|