From 5cb5d4d97ba350aaf3858dfc6a71ea78d9fbe579 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Wed, 11 Mar 2026 12:28:17 +0100 Subject: [PATCH] feat(home/course_page.html): add CoursePage template --- home/templates/home/course_page.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 home/templates/home/course_page.html diff --git a/home/templates/home/course_page.html b/home/templates/home/course_page.html new file mode 100644 index 0000000..d817878 --- /dev/null +++ b/home/templates/home/course_page.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} +{% load static %} +{% load wagtailcore_tags %} + +{% block body_class %}template-homepage{% endblock %} + +{% block extra_css %} + +{% endblock extra_css %} + +{% block content %} + + {{ page.body|richtext }} + +{% endblock content %}