Issue #7 List of redirections

This commit is contained in:
Alexis Hassler
2019-05-17 13:45:29 +02:00
parent a9c6585252
commit e9ee1f40d4
7 changed files with 39 additions and 10 deletions

View File

@@ -1,7 +1,14 @@
{%- include /functions/wiki-pages.html -%}
{%- assign redirect = page.redirect | liquify -%}
{%- if include.page -%}
{%- assign source_page = include.source_page -%}
{%- else -%}
{%- assign source_page = page -%}
{%- endif -%}
{%- assign redirect = source_page.redirect | liquify -%}
{%- for other_page in wiki_pages -%}
{%- if other_page.slug == redirect -%}
{%- if other_page.id == redirect -%}
{%- assign redirect_page = other_page -%}
{%- endif -%}
{%- endfor -%}