diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2018-11-25 13:30:25 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2018-11-25 13:30:25 +0100 |
commit | 76c251066fd34a26734bf1acdb1e041881e1c0af (patch) | |
tree | c332d7ae2bf0e45087fdcc33784dc99de9bcc98b /layouts/posts/single.html | |
parent | 461aafe99569a93838f823729aaf8d51fa693aaf (diff) |
Refactor templates and partials
Diffstat (limited to 'layouts/posts/single.html')
-rw-r--r-- | layouts/posts/single.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/layouts/posts/single.html b/layouts/posts/single.html index 9081faa..6b0712e 100644 --- a/layouts/posts/single.html +++ b/layouts/posts/single.html @@ -1,9 +1,11 @@ {{ define "main" }} <header> <h1>{{ .Title }}</h1> - <h5>{{ .Date.Format "January 2, 2006" }}</h5> + <h5> + <strong>{{ .Date.Format "January 2, 2006" }}</strong> + </h5> </header> <article class="markdown"> {{- .Content -}} </article> -{{ end }}
\ No newline at end of file +{{ end }} |