Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/knadh/hugo-ink.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKailash Nadh <kailash@nadh.in>2020-08-19 09:06:41 +0300
committerGitHub <noreply@github.com>2020-08-19 09:06:41 +0300
commitda20ed1c5b4c3860eb9498375bedb72982b8221a (patch)
tree646f40effca9ad647d8d4607bf405abc96077f37
parent0ec2c406cc00075cf4241c0e76de9645031c9b13 (diff)
parentd31f56d76db6af0791827cbb342868ec875a7378 (diff)
Merge pull request #21 from scottaw66/master
Updates term.html page list with missing ul tags
-rw-r--r--layouts/_default/term.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/layouts/_default/term.html b/layouts/_default/term.html
index 08fc635..40ae160 100644
--- a/layouts/_default/term.html
+++ b/layouts/_default/term.html
@@ -9,9 +9,11 @@
<h1 class="page-title">{{ .Title }}</h1>
{{ with (.Site.GetPage .Title) }}
+ <ul>
{{ range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
+ </ul>
{{ end }}
</div>