22 lines
529 B
HTML
22 lines
529 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% load wagtailcore_tags %}
|
|
|
|
{% block title %}{{ page.full_title }}{% endblock %}
|
|
|
|
{% block body_class %}template-homepage{% endblock %}
|
|
|
|
{% block extra_css %}
|
|
|
|
{% endblock extra_css %}
|
|
|
|
{% block content_class %}prose{% endblock content_class %}
|
|
|
|
{% block content %}
|
|
<h2 class="not-prose text-xl mb-4 text-gray-700">
|
|
<a href="{{ page.course.url }}" class="font-bold">{{ page.course.title }}</a> » {{ page.title }}
|
|
</h2>
|
|
|
|
{{ page.body|richtext }}
|
|
{% endblock content %}
|