hugo-theme-simple-cookbook/layouts/_default/single.html

34 lines
862 B
HTML

{{ define "main" }}
<div class="section">
<article class="container">
<header>
{{ with .Params.featured_image }}
<center>
<figure class="image is-128x128">
<img alt="{{ . }}" src="{{ . }}" />
</figure>
</center>
{{ end }}
<div class="is-flex">
<div>
<h1 class="title is-1">
{{ .Title }}
</h1>
<h6 class="subtitle is-6">
{{ .Summary }}
</h6>
</div>
</div>
<div style="margin-top: 1em;">
<span class="tag is-primary is-light">{{ .Params.Time }}</span>
{{ range .Params.Tags }}
<a class="tag" href="/tags/{{ . }}">{{ . }}</a>
{{ end }}
</div>
</header>
<div class="content" style="margin-top: 1em;">
{{ .Content }}
</div>
</article>
</div>
{{ end }}