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

github.com/ianrodrigues/hugo-tailwind-journal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Rodrigues <ianrdgs@gmail.com>2019-11-16 05:54:15 +0300
committerIan Rodrigues <ianrdgs@gmail.com>2019-11-16 05:54:15 +0300
commitd53d7a6cfe507c17442b164030b2f5a6531f91ee (patch)
treec5809e4867ae172e0d59aacc695a3aaedb65af42
parent0ff67a22c9980d6868f8fb80f661c7fb4068d9b1 (diff)
WIP
-rw-r--r--taxonomy/list.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/taxonomy/list.html b/taxonomy/list.html
new file mode 100644
index 0000000..530e636
--- /dev/null
+++ b/taxonomy/list.html
@@ -0,0 +1,20 @@
+{{ partial "header.html" . }}
+
+ <section class="mb-24">
+ {{ range .Pages.GroupByDate "2006" -}}
+ <div>
+ <h2 class="text-3xl font-bold mb-2">{{ .Key }}</h2>
+
+ <ol>
+ {{ range .Pages -}}
+ <li class="mb-6 md:flex md:flex-row">
+ <time class=" block md:flex-l-24" datetime="{{ .Date.Format "2006-01-02 15:04:05 MST" }}">{{ .Date.Format "Jan 02"}}</time>
+ <a class="text-lg md:ml-12" href="{{ .RelPermalink }}">{{ .Title }}</a>
+ </li>
+ {{- end }}
+ </ol>
+ </div>
+ {{ end }}
+ </section>
+
+{{ partial "footer.html" . }}