summaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/_default/taxonomy.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/neonxp/layouts/_default/taxonomy.html')
-rw-r--r--themes/neonxp/layouts/_default/taxonomy.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/themes/neonxp/layouts/_default/taxonomy.html b/themes/neonxp/layouts/_default/taxonomy.html
new file mode 100644
index 0000000..ac5fc7d
--- /dev/null
+++ b/themes/neonxp/layouts/_default/taxonomy.html
@@ -0,0 +1,20 @@
+{{ define "main" }}
+<article>
+ <h1>{{ .Title }}</h1>
+ {{ .Content }}
+</article>
+{{ range .Data.Pages }}
+<article class="h-entry">
+ <h2 class="p-name"><a class="u-url" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+ {{if .Date }}
+ {{ $dateMachine := .Date | time.Format "2006-01-02 15:04:05-07:00" }}
+ {{ $dateHuman := .Date | time.Format ":date_long" }}
+ <time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
+ {{end}}
+ <div class="p-summary">
+ {{ .Summary }}
+ </div>
+ <a class="btn-primary" href="{{ .RelPermalink }}">Читать дальше...</a>
+</article>
+{{ end }}
+{{ end }} \ No newline at end of file