Files
portails/layouts/blog/single.html
Henk Verlinde 67f0a6e623 Initial commit
2020-04-15 15:48:16 +02:00

14 lines
347 B
HTML

{{ define "main" }}
<div class="row justify-content-center">
<div class="col-md-12 col-lg-10 col-xl-8">
<article>
<div class="blog-header">
<h1>{{ .Title }}</h1>
{{ partial "main/blog-meta.html" . }}
</div>
<p class="lead">{{ .Params.lead }}</p>
{{ .Content }}
</article>
</div>
</div>
{{ end }}