Fix and refactor website meta tags for better SEO and social media previews

This commit is contained in:
Keavon Chambers
2024-05-10 04:17:44 -07:00
parent 0c50d91516
commit d0c493cdb6
14 changed files with 121 additions and 97 deletions
+6 -4
View File
@@ -1,7 +1,9 @@
{% extends "base.html" %}
{% block title %}{{ section.title }}{% endblock title %}
{%- block head -%}{%- set page = page | default(value = section) -%}
{%- set title = page.title -%}
{%- endblock head -%}
{% block content %}
{{ section.content | safe }}
{% endblock content %}
{%- block content -%}{%- set page = page | default(value = section) -%}
{{ page.content | safe }}
{%- endblock content -%}