diff --git a/cdhweb/urls.py b/cdhweb/urls.py index fa4fa075..7beba41f 100644 --- a/cdhweb/urls.py +++ b/cdhweb/urls.py @@ -60,11 +60,6 @@ ), # CAS login urls path("accounts/", include("pucas.cas_urls")), - # - all blog urls are now under updates/ - # re_path( - # r"^blog(?P.*)$", - # RedirectView.as_view(url="/updates%(blog_url)s", permanent=True), - # ), # sitemaps path( "sitemap.xml", sitemap_views.index, {"sitemaps": sitemaps}, name="sitemap-index" diff --git a/templates/blog/blog_landing_page.html b/templates/blog/blog_landing_page.html index f846c114..353a5751 100644 --- a/templates/blog/blog_landing_page.html +++ b/templates/blog/blog_landing_page.html @@ -1 +1,12 @@ -

Landing page

\ No newline at end of file +{% extends 'base.html' %} +{% load wagtailcore_tags springkit_tags %} + +{% block body_class %}template-blog-landing{% endblock %} + +{% block main %} + {% include 'includes/breadcrumbs.html' with breadcrumbs=page.breadcrumbs current_page=page %} + {% include 'includes/standard_hero.html' %} + + {# fixed tile block to go here #} + +{% endblock %}