diff options
author | breadcat | 2020-06-28 00:34:31 +0100 |
---|---|---|
committer | breadcat | 2020-06-28 00:34:31 +0100 |
commit | ad505d88ad0c586ca6b1eff2a0c7873c544c5fe1 (patch) | |
tree | 5e8e89ca36f7abfa4c456c589ba0293929e34e64 /themes/Brine/layouts/_default/single.html | |
parent | dd555cfd61ffe7a68fb4d82ed605baaf52ebcfc8 (diff) | |
download | blog.minskio.co.uk-ad505d88ad0c586ca6b1eff2a0c7873c544c5fe1.tar.gz blog.minskio.co.uk-ad505d88ad0c586ca6b1eff2a0c7873c544c5fe1.tar.bz2 blog.minskio.co.uk-ad505d88ad0c586ca6b1eff2a0c7873c544c5fe1.zip |
Tidy up produced HTML
Indentation, unecessary CSS declarations, line breaks, everything must
go!
Diffstat (limited to 'themes/Brine/layouts/_default/single.html')
-rw-r--r-- | themes/Brine/layouts/_default/single.html | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/themes/Brine/layouts/_default/single.html b/themes/Brine/layouts/_default/single.html index a34f75c..dacdc89 100644 --- a/themes/Brine/layouts/_default/single.html +++ b/themes/Brine/layouts/_default/single.html @@ -1,12 +1,5 @@ -{{ define "main" }} - <article class="post"> - <header class="post-header"> - <h1 class ="post-title">{{ .Title }}</h1> - <div class="post-meta"> - <div>Published: {{ .PublishDate.Format "Jan 2, 2006" }}</div> - <div>Reading time: {{ .ReadingTime }} min</div>{{- with .Params.tags -}} - <div>Tags: {{ range . -}}{{- with $.Site.GetPage (printf "/%s/%s" "tags" . ) -}}<a href="{{ .Permalink }}">{{ .Title }}</a> {{- end -}}{{- end -}}</div>{{- end -}} - </div> - </header> - <div class="post-content">{{ .Content }}</div> - </article>{{ end }} +{{ define "main" }} <h1>{{ .Title }}</h1> + <div>Published: {{ .PublishDate.Format "Jan 2, 2006" }}</div> + <div>Reading time: {{ .ReadingTime }} min</div>{{- with .Params.tags -}} + <div>Tags: {{ range . -}}{{- with $.Site.GetPage (printf "/%s/%s" "tags" . ) -}}<a href="{{ .Permalink }}">{{ .Title }}</a> {{- end -}}{{- end -}}</div>{{- end -}} + {{ .Content }}{{ end }} |