From a882fa29eac28cbb3b21a00e508eef1d93ec29d7 Mon Sep 17 00:00:00 2001 From: Yehonal Date: Sun, 12 Jan 2020 13:21:10 +0100 Subject: testing logo with relative_url --- _includes/git-wiki/sections/header/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '_includes/git-wiki/sections') diff --git a/_includes/git-wiki/sections/header/header.html b/_includes/git-wiki/sections/header/header.html index 38ec85b..ffbea44 100644 --- a/_includes/git-wiki/sections/header/header.html +++ b/_includes/git-wiki/sections/header/header.html @@ -2,7 +2,7 @@ {% if site.logo_url %} - + {% endif %} {{ site.title | escape }} -- cgit 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') 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/head/scripts.html | 2 +- _includes/git-wiki/sections/tail/tail.html | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to '_includes/git-wiki/sections') diff --git a/_includes/git-wiki/sections/head/scripts.html b/_includes/git-wiki/sections/head/scripts.html index 9cf23f3..9497626 100644 --- a/_includes/git-wiki/sections/head/scripts.html +++ b/_includes/git-wiki/sections/head/scripts.html @@ -4,7 +4,7 @@ - + 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