20 lines
468 B
HTML
20 lines
468 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load wagtailcore_tags %}
|
|
|
|
{% block body_class %}template-learningpath{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
<div class="intro">{{ page.intro|richtext }}</div>
|
|
|
|
{% for topic in page.get_children %}
|
|
<h2>{{ topic.title }}</h2>
|
|
{% for circle in topic.get_children %}
|
|
<h2><a href="{% pageurl circle %}">{{ circle.title }}</a></h2>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|