mirror of
https://github.com/welpo/tabi.git
synced 2025-10-10 23:38:53 +02:00
remove extend_header and extend_body config options
This commit is contained in:
parent
7b32562f9e
commit
846eb87609
3 changed files with 4 additions and 14 deletions
|
@ -253,12 +253,6 @@ invert_title_order = false
|
||||||
# Full path after the base URL required. So if you were to place it in "static" it would be "/favicon.png"
|
# Full path after the base URL required. So if you were to place it in "static" it would be "/favicon.png"
|
||||||
favicon = "img/seedling.png"
|
favicon = "img/seedling.png"
|
||||||
|
|
||||||
# Optionally extend the header by supplying an `extend_header.html` template
|
|
||||||
extend_header = false
|
|
||||||
|
|
||||||
# Optionally extend the body by supplying an `extend_body.html` template
|
|
||||||
extend_body = false
|
|
||||||
|
|
||||||
# Add an emoji here to use it as favicon.
|
# Add an emoji here to use it as favicon.
|
||||||
# Compatibility: https://caniuse.com/link-icon-svg
|
# Compatibility: https://caniuse.com/link-icon-svg
|
||||||
favicon_emoji = "🌱"
|
favicon_emoji = "🌱"
|
||||||
|
|
|
@ -44,10 +44,8 @@ This variable will hold all the text strings for the language #}
|
||||||
</div>
|
</div>
|
||||||
{% include "partials/footer.html" %}
|
{% include "partials/footer.html" %}
|
||||||
|
|
||||||
{# Optional extended body content #}
|
{# Users can optionally provide this template to add content to the body element. #}
|
||||||
{%- if config.extra.extend_body -%}
|
{% include "tabi/extend_body.html" ignore missing %}
|
||||||
{% include "extend_body.html" %}
|
|
||||||
{%- endif -%}
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -177,8 +177,6 @@
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
|
||||||
{# Optional extended header content #}
|
{# Users can optionally provide this template to add content to the head element. #}
|
||||||
{%- if config.extra.extend_header -%}
|
{% include "tabi/extend_head.html" ignore missing %}
|
||||||
{% include "extend_header.html" %}
|
|
||||||
{%- endif -%}
|
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue