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

127 lines
4.4 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 }}
{{ if .Params.Category }} &bull; {{ end }}
Category: <a href="{{ ( printf "category/%s/" ( .Params.Category | urlize ) ) | relLangURL }}"><span itemprop="recipeCategory">{{ .Params.Category | humanize }}</span></a>
{{ if .Params.Cuisine }} &bull; {{ end }}
Cuisine: <a href="{{ ( printf "cuisine/%s/" ( .Params.Cuisine | urlize ) ) | relLangURL }}"><span itemprop="recipeCuisine">{{ .Params.Cuisine | humanize }}</span></a>
</div>
<div class="clearfix mt3">
{{ with .Params.Tags }}{{ partial "taxonomy/tags" . }}{{ end }}
</div>
{{ if (or (or .Params.yield .Params.prepTime) .Params.cookTime) }}
<div class="clearfix mt3">
{{ if .Params.yield }}Yields: {{ .Params.yield }}{{ end }}
{{ if (and .Params.prepTime .Params.yield) }} &bull; {{ end }}
{{ if .Params.prepTime }}Prep Time: {{ .Params.prepTime }}{{ end }}
{{ if (and .Params.cookTime (or .Params.yield .Params.prepTime)) }} &bull; {{ end }}
{{ if .Params.cookTime }}Cook Time: {{ .Params.cookTime }}{{ end }}
</div>
{{ 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 }}
<!-- call up recipe and directions -->
<div class="clearfix mt3">
<div class="sm-col sm-col-6 lg-col-6 recipeItems">
{{ with .Params.Ingredients }}
<h4 class="blue mt0 mb2 xs-center">{{ i18n "ingredients" }}</h4>
<ul itemprop="ingredients">
<!-- list ingredients that make up recipe -->
{{ range . }}
<li itemprop="recipeIngredient">
{{ with ( . | markdownify) }}{{ partial "recipe_item.html" . }}{{ end }}
</li>
{{ end }}
</ul>
{{ end }}
</div>
</div>
{{ if .Params.directions }}
<div class="clearfix mt3">
<div class="sm-col sm-col-6 lg-col-6 recipeItems">
<h4 class="blue mt0 mb2 xs-center">{{ i18n "directions" }}</h4>
<ul itemprop="recipeInstructions">
{{ range .Params.Directions }}
<li>
{{ with ( . | markdownify) }}{{ partial "recipe_item.html" . }}{{ end }}
</li>
{{ end }}
</ul>
</div>
</div>
{{ end }}
<!-- end recipe and directions -->
<div class="px2 mt3 clearfix">
<div class="sm-col-8 mx-auto" itemprop="description">{{.Content}}</div>
</div>
{{ if .Params.inspiration }}
<h3 class="blue mt0 mb2 xs-center center">Inspiration & Resources</h3>
{{ range .Params.inspiration }}
<ul class="center">
{{ if .url }}
<li><a href="{{ .url | safeURL }}" target="_blank" rel="noopener me">{{ .title }}</a></li>
{{ else }}
<li>{{ .title }}</li>
{{ end }}
</ul>
{{ end }}
{{ end }}
<!-- 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 }}