Skip to content

Commit

Permalink
landing page template
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahframe committed Jun 11, 2024
1 parent 84ba187 commit c0d45c9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
5 changes: 0 additions & 5 deletions cdhweb/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -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<blog_url>.*)$",
# RedirectView.as_view(url="/updates%(blog_url)s", permanent=True),
# ),
# sitemaps
path(
"sitemap.xml", sitemap_views.index, {"sitemaps": sitemaps}, name="sitemap-index"
Expand Down
13 changes: 12 additions & 1 deletion templates/blog/blog_landing_page.html
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
<h2>Landing page</h2>
{% 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 %}

0 comments on commit c0d45c9

Please sign in to comment.