culinary.kemonine.info/themes/gochowdown/layouts/notes/single.html

89 lines
2.6 KiB
HTML

{{ define "title" }}
{{ .Title }} · {{ .Site.Title }}
{{ end }}
{{ define "content" }}
<div class="container" itemscope itemtype="http://schema.org/Recipe">
<article class="post-content px2">
<!-- call up the main recipe title and content -->
<header class="post-header">
<h1 class="post-title center m1 sm-mt3" itemprop="name">{{ .Title }}</h1>
</header>
<div class="recipe-source center">
<div class="clearfix mt3">
Published: {{ .PublishDate.Format "January 2, 2006" }}
{{ if ne .PublishDate .Lastmod }}
&bull; Last Updated: {{ .Lastmod.Format "January 2, 2006" }}
{{ end }}
</div>
<div class="clearfix mt3">
Chef:
{{if .Params.authorurl }}
<a href="{{.Params.authorurl}}">{{.Params.AuthorName}}</a>
{{else}}
{{.Params.AuthorName}}
{{end}}
</div>
{{ with .Params.Tags }}{{ partial "taxonomy/tags" . }}{{ end }}
</div>
{{ if .Params.changelog }}
<div class="px2 mt3 clearfix center">
<div class="sm-col-8 mx-auto" itemprop="description">
<h3 class="blue mt0 mb2 xs-center">Changelog</h3>
<dl>
{{ range .Params.changelog }}
<dt>{{ .changedate }}</dt>
<dd>{{ .change }}</dd>
{{ end }}
</dl>
</div>
</div>
{{ end }}
<div class="px2 mt3 clearfix">
<div class="sm-col-8 mx-auto" itemprop="description">{{.Content}}</div>
</div>
{{ if .Params.inspiration }}
<div class="px2 mt3 clearfix center">
<div class="sm-col-8 mx-auto" itemprop="description">
<h3 class="blue mt0 mb2 xs-center">Inspiration & Resources</h3>
{{ range .Params.inspiration }}
<ul class="recipe-source">
{{ if .url }}
<li><a href="{{ .url | safeURL }}" target="_blank" rel="noopener me">{{ .title }}</a></li>
{{ else }}
<li>{{ .title }}</li>
{{ end }}
</ul>
{{ end }}
{{ end }}
</div>
</div>
<!-- call up the image and image credit link -->
{{ if .Params.image }}
<div class="xs-p2 center">
<figure itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
{{ with .Resources.GetMatch .Params.Image }}
{{ with .Fit "1000x1000" }}
<img itemprop="image" src="{{ .RelPermalink }}" {{ if .Params.imagecaption }}alt="{{.Params.imagecaption}}" {{ end }} style="max-width:75%" />
{{ end }}
{{ end }}
{{ if .Params.imagecaption }}
<figcaption>
<p><b>Pictured:</b> {{ .Params.imagecaption }}</p>
</figcaption>
{{ end }}
</figure>
</div>
{{ end }}
</article>
</div>
{{ end }}