diff options
Diffstat (limited to 'themes/Brine/layouts/_default/page.html')
-rw-r--r-- | themes/Brine/layouts/_default/page.html | 13 |
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 }} |