From 31bc964779174e72d9f616707f1d1d8c97723570 Mon Sep 17 00:00:00 2001 From: Yehonal Date: Sun, 12 Jan 2020 14:47:00 +0100 Subject: restored red links --- _includes/git-wiki/sections/tail/tail.html | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '_includes/git-wiki/sections/tail') diff --git a/_includes/git-wiki/sections/tail/tail.html b/_includes/git-wiki/sections/tail/tail.html index 692867f..8aa8139 100644 --- a/_includes/git-wiki/sections/tail/tail.html +++ b/_includes/git-wiki/sections/tail/tail.html @@ -18,6 +18,12 @@ {% endif %} + + {% if site.inc_after_tail %} {% include {{ site.inc_after_tail }} %} {% endif %} -- cgit From 69655922dc8fada82e347b4598c53b784e370e20 Mon Sep 17 00:00:00 2001 From: Yehonal Date: Sun, 12 Jan 2020 18:24:18 +0100 Subject: improved red-link check --- _includes/git-wiki/sections/tail/tail.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to '_includes/git-wiki/sections/tail') diff --git a/_includes/git-wiki/sections/tail/tail.html b/_includes/git-wiki/sections/tail/tail.html index 8aa8139..f5944c9 100644 --- a/_includes/git-wiki/sections/tail/tail.html +++ b/_includes/git-wiki/sections/tail/tail.html @@ -18,9 +18,15 @@ {% endif %} +{% assign items = site.html_pages %} +{% for page in items %} +{% assign url = page.url | relative_url %} +{% assign urls = urls | append: url | append: "," %} +{% endfor %} + -- cgit