about summary refs log tree commit diff stats
path: root/themes/xmin/layouts/_default/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/xmin/layouts/_default/single.html')
-rw-r--r--themes/xmin/layouts/_default/single.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/themes/xmin/layouts/_default/single.html b/themes/xmin/layouts/_default/single.html deleted file mode 100644 index b69ed7c..0000000 --- a/themes/xmin/layouts/_default/single.html +++ /dev/null
@@ -1,19 +0,0 @@
1{{ define "main" }}
2<article class="h-entry">
3 <header>
4 <h1><span class="title p-name">{{ .Title | markdownify }}</span></h1>
5 {{ if (gt .Params.date 0) }}<time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "2006-01-02" }}</time>{{ end }}
6 <p class="terms">
7 {{- range $i := (slice "categories" "tags") }}
8 {{- with ($.Param $i) }}
9 {{ $i | title }}: {{ range $k := . }}<a class="p-category" href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }}
10 {{- end }}
11 {{- end }}
12 </p>
13 </header>
14
15 <div class="e-content">
16 {{ .Content }}
17 </div>
18</article>
19{{- end }}