summaryrefslogtreecommitdiffstats
path: root/themes/Brine/layouts/_default/page.html
diff options
context:
space:
mode:
authorbreadcat2020-06-28 00:34:31 +0100
committerbreadcat2020-06-28 00:34:31 +0100
commitad505d88ad0c586ca6b1eff2a0c7873c544c5fe1 (patch)
tree5e8e89ca36f7abfa4c456c589ba0293929e34e64 /themes/Brine/layouts/_default/page.html
parentdd555cfd61ffe7a68fb4d82ed605baaf52ebcfc8 (diff)
downloadblog.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/page.html')
-rw-r--r--themes/Brine/layouts/_default/page.html13
1 files changed, 3 insertions, 10 deletions
diff --git a/themes/Brine/layouts/_default/page.html b/themes/Brine/layouts/_default/page.html
index 8c69ad7..e32b8d9 100644
--- a/themes/Brine/layouts/_default/page.html
+++ b/themes/Brine/layouts/_default/page.html
@@ -1,10 +1,3 @@
-{{ define "main" }}
- <article class="post">
- <header class="post-header">
- <h1 class ="post-title">{{ .Title }}</h1>
- <div class="post-meta">
- <div>Reading time: {{ .ReadingTime }} min</div>
- </div>
- </header>
- <div class="post-content">{{ .Content }}</div>
- </article>{{ end }}
+{{ define "main" }} <h1>{{ .Title }}</h1>
+ <div>Reading time: {{ .ReadingTime }} min</div>
+ {{ .Content }}{{ end }}