summaryrefslogtreecommitdiff
path: root/themes/m10c/layouts/_default/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/m10c/layouts/_default/single.html')
-rw-r--r--themes/m10c/layouts/_default/single.html38
1 files changed, 0 insertions, 38 deletions
diff --git a/themes/m10c/layouts/_default/single.html b/themes/m10c/layouts/_default/single.html
deleted file mode 100644
index 2584aaf..0000000
--- a/themes/m10c/layouts/_default/single.html
+++ /dev/null
@@ -1,38 +0,0 @@
-{{ define "main" }}
- <article class="post">
- <header class="post-header">
- <h1 class ="post-title">{{ .Title }}</h1>
- <div class="post-meta">
- <div>
- {{ partial "icon.html" (dict "ctx" $ "name" "calendar") }}
- {{ .PublishDate.Format "Jan 2, 2006" }}
- </div>
- <div>
- {{ partial "icon.html" (dict "ctx" $ "name" "clock") }}
- {{ .ReadingTime }} min read
- </div>
- {{- with .Params.tags -}}
- <div>
- {{ partial "icon.html" (dict "ctx" $ "name" "tag") }}
- {{ range . -}}
- {{- with $.Site.GetPage (printf "/%s/%s" "tags" . ) -}}
- <a class="tag" href="{{ .Permalink }}">{{ .Title }}</a>
- {{- end -}}
- {{- end -}}
- </div>
- {{- end -}}
- </div>
- </header>
- <div class="post-content">
- {{ .Content }}
- </div>
- <div class="post-footer">
- <script defer
- src="https://commento.rogs.me/js/commento.js"
- data-css-override="/commento-new.css"
- data-auto-init="true">
- </script>
- <div id="commento"></div>
- </div>
- </article>
-{{ end }}