msfjarvis.dev/themes/hyde/layouts/_default/single.html
Harsh Shandilya f7ef842460 themes/hyde: Load syntax CSS with the main bundle
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
2020-01-10 21:49:48 +05:30

17 lines
517 B
HTML

{{ define "main" -}}
<div class="post">
<h1>{{ .Title }}</h1>
<p class="post-date"><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}">{{ .Date.Format "January 2, 2006" }}</time> | ~{{ .ReadingTime }} min read |
{{ range .Params.tags }}
<span class="tag"><a class="tag" href="{{ "tags/" | absLangURL }}{{ . | urlize }}">#{{.}}</a> </span>
{{ end }}
</p>
{{ .Content }}
</div>
{{ if .Site.DisqusShortname -}}
<h2>Comments</h2>
{{ template "_internal/disqus.html" . }}
{{- end }}
{{- end }}