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

gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/taxonomy/tag.html')
-rw-r--r--layouts/taxonomy/tag.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layouts/taxonomy/tag.html b/layouts/taxonomy/tag.html
new file mode 100644
index 0000000..73222c1
--- /dev/null
+++ b/layouts/taxonomy/tag.html
@@ -0,0 +1,18 @@
+{{ define "main" }}
+<article class="row-fluid navmargin">
+ <header class="page-header">
+ <h1>{{.Title}}</h1>
+ </header>
+ <!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
+ {{.Content}}
+</article>
+<ul>
+<!-- Ranges through content/posts/*.md -->
+{{ range .Data.Pages }}
+ <li>
+ <a href="{{.RelPermalink}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a>
+ </li>
+{{ end }}
+</ul>
+{{ end }}
+