replace super() with page.description

main
Andrew Coleman 2023-02-03 16:46:40 -05:00
parent 9db0b92f88
commit c9d314827d
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{% import "_macros.html" as macros %} {% import "_macros.html" as macros %}
{% extends "index.html" %} {% extends "index.html" %}
{% block title %}{{ page.title }} | {{ super() }} {% endblock title %} {% block title %}{{ page.title }} | {{ page.description }} {% endblock title %}
{% block header %} {% block header %}
<header class="box-shadow"> <header class="box-shadow">
@ -12,4 +12,4 @@
{% block content %} {% block content %}
<div class="heading-text">{{ page.description }}</div> <div class="heading-text">{{ page.description }}</div>
{{ page.content | safe }} {{ page.content | safe }}
{% endblock content %} {% endblock content %}