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

github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/categories/list.html')
-rw-r--r--layouts/categories/list.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layouts/categories/list.html b/layouts/categories/list.html
new file mode 100644
index 0000000..28ef6e3
--- /dev/null
+++ b/layouts/categories/list.html
@@ -0,0 +1,20 @@
+{{ define "main" }}
+<div class="pl-sm-4 ml-sm-5">
+ <h4>{{ if eq .Name "Categories" }} Categories {{ else }} Category - {{ .Name }} {{ end }}</h4>
+ {{ $outerName := .Name }}
+ <ul class="list-unstyled">
+ {{ range .Pages }}
+ <li>
+ {{ if ne $outerName "Categories" }}
+ <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }}">
+ {{ .Date.Format "Jan 2 2006" }}
+ </time>
+ {{ end }}
+ <a href="{{ .URL | relURL }}">
+ {{ .Title }}
+ </a>
+ </li>
+ {{ end }}
+ </ul>
+</div>
+{{ end }}