2022-12-03 16:41:20 +00:00
|
|
|
{{ define "title" }}
|
2022-12-04 18:55:20 +00:00
|
|
|
{{ .Title }} · {{ .Site.Title }}
|
2022-12-03 16:41:20 +00:00
|
|
|
{{ 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>
|
|
|
|
|
2022-12-04 18:55:20 +00:00
|
|
|
<div class="recipe-source center">
|
|
|
|
<div class="clearfix mt3">
|
|
|
|
Published: {{ .PublishDate.Format "January 2, 2006" }} • Last Updated: {{ .Lastmod.Format "January 2, 2006" }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clearfix mt3">
|
|
|
|
Chef:
|
|
|
|
{{if .Params.authorurl }}
|
|
|
|
<a href="{{.Params.authorurl}}">{{.Params.AuthorName}}</a>
|
|
|
|
{{else}}
|
|
|
|
{{.Params.AuthorName}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2022-12-03 21:27:54 +00:00
|
|
|
|
2022-12-04 18:55:20 +00:00
|
|
|
{{ with .Params.Category }}{{ partial "taxonomy/notes" . }}{{ end }}
|
|
|
|
{{ with .Params.Tags }}{{ partial "taxonomy/tags" . }}{{ end }}
|
2022-12-03 21:27:54 +00:00
|
|
|
</div>
|
|
|
|
|
2022-12-03 16:41:20 +00:00
|
|
|
<div class="px2 mt3 clearfix">
|
|
|
|
<div class="sm-col-8 mx-auto" itemprop="description">{{.Content}}</div>
|
|
|
|
</div>
|
|
|
|
|
2022-12-04 18:55:20 +00:00
|
|
|
{{ 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 }}">{{ .title }}</a></li>
|
|
|
|
{{ else }}
|
|
|
|
<li>{{ .title }}</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-12-03 16:41:20 +00:00
|
|
|
|
|
|
|
|
2022-12-04 18:55:20 +00:00
|
|
|
<!-- call up the image and image credit link -->
|
|
|
|
{{ if .Params.image }}
|
2022-12-03 21:27:54 +00:00
|
|
|
<div class="xs-p2 center">
|
2022-12-04 18:55:20 +00:00
|
|
|
<figure itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
|
2022-12-04 16:05:38 +00:00
|
|
|
{{ with .Resources.GetMatch .Params.Image }}
|
2022-12-04 18:55:20 +00:00
|
|
|
{{ with .Fit "1000x1000" }}
|
|
|
|
<img itemprop="image" src="{{ .RelPermalink }}" {{ if .Params.imagecaption }}alt="{{.Params.imagecaption}}" {{ end }} style="max-width:75%" />
|
|
|
|
{{ end }}
|
2022-12-04 16:05:38 +00:00
|
|
|
{{ end }}
|
2022-12-03 21:27:54 +00:00
|
|
|
{{ if .Params.imagecaption }}
|
2022-12-04 18:55:20 +00:00
|
|
|
<figcaption>
|
|
|
|
<p><b>Pictured:</b> {{ .Params.imagecaption }}</p>
|
|
|
|
</figcaption>
|
2022-12-03 21:27:54 +00:00
|
|
|
{{ end }}
|
|
|
|
</figure>
|
|
|
|
</div>
|
2022-12-04 18:55:20 +00:00
|
|
|
{{ end }}
|
2022-12-03 16:41:20 +00:00
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|