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:
authorScott Willsey <scottaw66@users.noreply.github.com>2020-08-19 08:59:54 +0300
committerScott Willsey <scottaw66@users.noreply.github.com>2020-08-19 08:59:54 +0300
commitd31f56d76db6af0791827cbb342868ec875a7378 (patch)
tree646f40effca9ad647d8d4607bf405abc96077f37
parenteea3f91964ebfc29bd59ed8176d9125399e6db1f (diff)
Updates term.html page list
Added missing ul tags for list
-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>