From 55282f3c35f08f51d0401cb30e34e3468e04cd52 Mon Sep 17 00:00:00 2001 From: Anthony Lawn Date: Sat, 9 Nov 2019 11:26:35 -0600 Subject: [PATCH] Fixed links in pages not being clickable --- _layouts/default.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/_layouts/default.html b/_layouts/default.html index d94319d8..7a33129f 100755 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -73,6 +73,13 @@ {% for section in page.sections %}
{{ section }}
{% endfor %} + + {% if page.links %} + {% for link in page.links %} + {% assign split = link | split: "|" %} + {{ split[0] }} + {% endfor %} + {% endif %}