mirror of
https://github.com/welpo/tabi.git
synced 2025-12-17 04:48:44 +01:00
add jump to posts
This commit is contained in:
parent
e0971689b0
commit
c056b53d26
25 changed files with 78 additions and 5 deletions
|
|
@ -13,7 +13,25 @@
|
|||
{%- include "partials/home_banner.html" -%}
|
||||
{% endif -%}
|
||||
|
||||
{{ macros_page_header::page_header(title=section.title) }}
|
||||
{%- set show_jump = false -%}
|
||||
{%- set setting_value = macros_settings::evaluate_setting_priority(setting="show_jump_to_posts", page=section) -%}
|
||||
{%- if setting_value == "true" -%}
|
||||
{%- set_global show_jump = true -%}
|
||||
{%- elif setting_value != "false" -%}
|
||||
{#- Default to true if the content is long and var is unset #}
|
||||
{%- if section.content | length > 2000 -%}
|
||||
{%- set_global show_jump = true -%}
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
|
||||
{%- if show_jump -%}
|
||||
<div class="title-with-jump bottom-divider">
|
||||
<h1 class="title-container section-title">{{ section.title }}</h1>
|
||||
<a href="#posts-list" class="jump-link">{{ macros_translate::translate(key="jump_to_posts", default="Jump to posts", language_strings=language_strings) }} ↓</a>
|
||||
</div>
|
||||
{%- else -%}
|
||||
{{ macros_page_header::page_header(title=section.title) }}
|
||||
{%- endif -%}
|
||||
|
||||
<section class="body">
|
||||
{{ section.content | safe }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue