diff options
| author | Ahmed M Alaa <aa@4b.cx> | 2022-12-04 23:19:16 +0200 |
|---|---|---|
| committer | Ahmed M Alaa <aa@4b.cx> | 2022-12-04 23:19:16 +0200 |
| commit | 2d7be35ef50d37f5057248d20cbeb1f06fd5cde0 (patch) | |
| tree | a735e70bd255b3cb7aa3a011df5dc33500a01495 /templates | |
| parent | 06e0d3f6499fefa06f78247caddcf34018af180c (diff) | |
fix: adjusted list_page option, typos
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/base.html | 20 | ||||
| -rw-r--r-- | templates/index.html | 2 |
2 files changed, 16 insertions, 6 deletions
diff --git a/templates/base.html b/templates/base.html index e50dc0a..e00a202 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,31 +8,41 @@ {% if page.title %} {% set title = page.title %} - {% else %} + {% elif section.title %} + {% set title = section.title %} + {% elif config.title %} {% set title = config.title %} {% endif %} {% if page.extra.author %} {% set author = page.extra.author %} - {% else %} + {% elif section.extra.author %} + {% set author = section.extra.author %} + {% elif config.extra.author %} {% set author = config.extra.author %} {% endif %} {% if page.description %} {% set description = page.description | truncate(length=150) %} - {% else %} + {% elif section.description %} + {% set description = section.description | truncate(length=150) %} + {% elif config.description %} {% set description = config.description | truncate(length=150) %} {% endif %} {% if page.extra.image %} {% set image = get_url(path=page.extra.image, trailing_slash=false) %} - {% else %} + {% elif section.extra.image %} + {% set image = get_url(path=section.extra.image, trailing_slash=false) %} + {% elif config.extra.logo %} {% set image = get_url(path=config.extra.logo, trailing_slash=false) %} {% endif %} {% if page.permalink %} {% set url = page.permalink %} - {% else %} + {% elif section.permalink %} + {% set url = section.permalink %} + {% elif config.base_url %} {% set url = config.base_url %} {% endif %} diff --git a/templates/index.html b/templates/index.html index 146df3b..40487bc 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3,7 +3,7 @@ {% block content %} {{ section.content | safe }} -{% if section.extra.list_pages %} +{% if config.extra.list_pages %} {% if paginator %} {% set pages = paginator.pages %} {% else %} |
