kamathskitchen-website/themes/raavas/layouts/_default/list.html

23 lines
855 B
HTML

{{ define "main" }}
<main class='content single-page h-feed'>
<!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
{{ range .Pages }}
<article class="post h-entry content-max-width">
<div class="post-image half" >
<a href="{{ .RelPermalink }}">
<img class="thumb" src="{{- .Params.thumb -}}" alt="{{ .Title }}-thumb">
</a>
</div>
<div class="half">
<header>
<h2 class="title p-name"><a class=" u-url title-link" href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{- partial "meta-post.html" . -}}
</header>
<p class="p-summary">{{ .Description | truncate 200}}</p>
<a class="link" href="{{ .RelPermalink }}">Read the full recipe<span class="arrow"> &rarr;</span></a>
</div>
</article>
{{ end }}
</main>
{{ end }}