diff options
Diffstat (limited to 'themes/xmin/layouts/_default/single.html')
-rw-r--r-- | themes/xmin/layouts/_default/single.html | 19 |
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 @@ -{{ define "main" }} -<article class="h-entry"> - <header> - <h1><span class="title p-name">{{ .Title | markdownify }}</span></h1> - {{ if (gt .Params.date 0) }}<time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "2006-01-02" }}</time>{{ end }} - <p class="terms"> - {{- range $i := (slice "categories" "tags") }} - {{- with ($.Param $i) }} - {{ $i | title }}: {{ range $k := . }}<a class="p-category" href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }} - {{- end }} - {{- end }} - </p> - </header> - - <div class="e-content"> - {{ .Content }} - </div> -</article> -{{- end }} |