feat: extend tabi <head> and <body> elements (#528)

Co-authored-by: welpo <welpo@users.noreply.github.com>
This commit is contained in:
Cameron Taylor 2025-06-01 08:12:41 -07:00 committed by GitHub
parent 5c1e4acbb1
commit 979f347fb0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 53 additions and 3 deletions

View file

@ -43,6 +43,9 @@ This variable will hold all the text strings for the language #}
{% endblock main_content %}
</div>
{% include "partials/footer.html" %}
{# Users can optionally provide this template to add content to the body element. #}
{% include "tabi/extend_body.html" ignore missing %}
</body>
</html>

View file

@ -177,4 +177,6 @@
{%- endif -%}
{%- endif -%}
{# Users can optionally provide this template to add content to the head element. #}
{% include "tabi/extend_head.html" ignore missing %}
</head>