mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-24 21:20:17 +01:00
Alan Orth
412cc18cf9
Partials are nice, but blocks are a better base construct. Right now there is basically only layouts/_default/baseof.html that is doing most of the work. See: https://gohugo.io/templates/blocks
9 lines
487 B
HTML
9 lines
487 B
HTML
{{ define "title" }}{{ .Title }} – {{ .Site.Title }}{{ end }}
|
|
{{ define "main" }}
|
|
<article class="blog-post">
|
|
<h2 class="blog-post-title"><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h2>
|
|
<p class="blog-post-meta"><time datetime="{{ .Date }}">{{ .Date.Format .Site.Params.date_format }}</time> by <a href="#">{{ .Params.author | default .Site.Params.author }}</a></p>
|
|
{{ .Content }}
|
|
</article> <!-- /.blog-post -->
|
|
{{ end }}
|