about summary refs log tree commit diff
path: root/blog/themes/tailwind/layouts/_default/single.html
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-03-09T13·31+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-03-09T13·31+0000
commit6e4c721be5fd3483da7fa3de4b85659552494a49 (patch)
treee44d93b1fffaf1aaee47e46fde35924f6650c88a /blog/themes/tailwind/layouts/_default/single.html
parentd206a2812fc07e9ae8af016d3dc9d24a8bcf0508 (diff)
parent2cf446f4ef7bdcc4303ebcb0a3062e87cde4928b (diff)
Add 'blog/themes/tailwind/' from commit '2cf446f4ef7bdcc4303ebcb0a3062e87cde4928b'
git-subtree-dir: blog/themes/tailwind
git-subtree-mainline: d206a2812fc07e9ae8af016d3dc9d24a8bcf0508
git-subtree-split: 2cf446f4ef7bdcc4303ebcb0a3062e87cde4928b
Diffstat (limited to 'blog/themes/tailwind/layouts/_default/single.html')
-rw-r--r--blog/themes/tailwind/layouts/_default/single.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/blog/themes/tailwind/layouts/_default/single.html b/blog/themes/tailwind/layouts/_default/single.html
new file mode 100644
index 000000000000..e4485f324e9c
--- /dev/null
+++ b/blog/themes/tailwind/layouts/_default/single.html
@@ -0,0 +1,28 @@
+{{ define "heading" }}
+<div>
+    {{ partial "back-home.html" . }}
+    
+    <!-- Title and Publication Date -->
+    <h1 class="text-4xl font-bold">{{ .Title }}</h1>
+    <time datetime="{{ .Date.Format "2006-01-02 15:04:05 MST" }}">{{ .Date.Format "02 Jan 2006" }}</time>
+    
+    <!-- Tags -->
+    {{ with .Params.tags }}
+    <ol class="mt-4">
+        {{ range . }}
+        <li class="inline-block">
+            <a class="border-none text-gray-800 text-xs bg-gray-400 hover:bg-gray-600 hover:text-white rounded-sm px-3 py-1" href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
+        </li>
+        {{ end }}
+    </ol>
+    {{ end }}
+</div>
+{{ end }}
+
+{{ define "content" }}
+<article class="mb-12">
+    {{ .Content }}
+
+    {{ template "_internal/disqus.html" . }}
+</article>
+{{ end }}