mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2026-03-20 10:52:58 +01:00
Issue #7 List of redirections
This commit is contained in:
21
_global/Special:ListRedirects.html
Normal file
21
_global/Special:ListRedirects.html
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
layout: default
|
||||
title: Redirects
|
||||
menu: ['global']
|
||||
---
|
||||
{%- include /functions/wiki-pages.html -%}
|
||||
{%- assign redirect_pages = site.special | where_exp: 'page', 'page.redirect' -%}
|
||||
|
||||
<ul>
|
||||
{%- for source_page in redirect_pages -%}
|
||||
<li>
|
||||
{%- assign redirect = source_page.redirect | liquify | prepend: '/' -%}
|
||||
{%- for other_page in wiki_pages -%}
|
||||
{%- if other_page.id == redirect -%}
|
||||
{%- assign redirect_page = other_page -%}
|
||||
{%- endif -%}
|
||||
{%- endfor -%}
|
||||
<a href="{{ source_page.url }}.html">{{ source_page.id }}</a> → <a href="{{ redirect_page.url }}.html">{{ redirect_page.title }}</a>
|
||||
</li>
|
||||
{%- endfor -%}
|
||||
</ul>
|
||||
Reference in New Issue
Block a user