diff options
author | 2022-08-13 06:10:38 +0200 | |
---|---|---|
committer | 2022-08-13 06:10:38 +0200 | |
commit | 42124deb7ea5f17bc6faf959baba8e951b567655 (patch) | |
tree | d485bbeecc278cff5fa24eba566d5a95a2b5cff0 /pydis_site/templates/content/base.html | |
parent | Add Tags To Content Listings (diff) |
Add Tag Page Template
Add a template for the tag page itself, and add a route to use it.
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'pydis_site/templates/content/base.html')
-rw-r--r-- | pydis_site/templates/content/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/templates/content/base.html b/pydis_site/templates/content/base.html index 4a19a275..dbd303a1 100644 --- a/pydis_site/templates/content/base.html +++ b/pydis_site/templates/content/base.html @@ -35,7 +35,7 @@ <section class="section"> <div class="container"> <div class="content"> - <h1 class="title">{{ page_title }}</h1> + <h1 class="title">{% block title_element %}{{ page_title }}{% endblock %}</h1> {% block page_content %}{% endblock %} </div> </div> |