added posts layout to recipes
This commit is contained in:
parent
f7eafdbc01
commit
5e66a94fab
3 changed files with 76 additions and 0 deletions
4
layouts/recipes/li.html
Normal file
4
layouts/recipes/li.html
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
<li>
|
||||||
|
<span class="date">{{ .Date | time.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</span>
|
||||||
|
<a class="title" href="{{ .Params.externalLink | default .RelPermalink }}">{{ .Title }}</a>
|
||||||
|
</li>
|
||||||
20
layouts/recipes/list.html
Normal file
20
layouts/recipes/list.html
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{{ define "title" }}
|
||||||
|
{{ title (i18n (lower .Title)) | default .Title }} · {{ .Site.Title }}
|
||||||
|
{{ end }}
|
||||||
|
{{ define "content" }}
|
||||||
|
<section class="container list">
|
||||||
|
<h1 class="title">
|
||||||
|
<a class="title-link" href="{{ .Permalink | safeURL }}">
|
||||||
|
{{ title (i18n (lower .Title)) | default .Title }}
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
{{ .Content }}
|
||||||
|
<ul>
|
||||||
|
{{- range .Paginator.Pages -}}
|
||||||
|
{{- .Render "li" -}}
|
||||||
|
{{- end -}}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
{{ partial "pagination.html" . }}
|
||||||
|
</section>
|
||||||
|
{{ end }}
|
||||||
52
layouts/recipes/single.html
Normal file
52
layouts/recipes/single.html
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
{{ define "title" }}
|
||||||
|
{{ .Title }} · {{ .Site.Title }}
|
||||||
|
{{ end }}
|
||||||
|
{{ define "content" }}
|
||||||
|
<section class="container post">
|
||||||
|
<article>
|
||||||
|
<header>
|
||||||
|
<div class="post-title">
|
||||||
|
<h1 class="title">
|
||||||
|
<a class="title-link" href="{{ .Permalink | safeURL }}">
|
||||||
|
{{ .Title }}
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
<div class="post-meta">
|
||||||
|
<div class="date">
|
||||||
|
<span class="posted-on">
|
||||||
|
<i class="fa fa-calendar" aria-hidden="true"></i>
|
||||||
|
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
|
||||||
|
{{ .Date | time.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
|
||||||
|
</time>
|
||||||
|
</span>
|
||||||
|
<span class="reading-time">
|
||||||
|
<i class="fa fa-clock-o" aria-hidden="true"></i>
|
||||||
|
{{ i18n "reading_time" .ReadingTime }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
{{ with .Page.Params.Authors }}{{ partial "taxonomy/authors.html" . }}{{ end }}
|
||||||
|
{{ with .Page.Params.Categories }}{{ partial "taxonomy/categories.html" . }}{{ end }}
|
||||||
|
{{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{{ if .Params.featuredImage }}
|
||||||
|
<img src="{{ .Params.featuredImage | relURL }}" alt="Featured image"/>
|
||||||
|
{{ end }}
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
{{ partial "posts/series.html" . }}
|
||||||
|
{{ partial "posts/disqus.html" . }}
|
||||||
|
{{ partial "posts/commento.html" . }}
|
||||||
|
{{ partial "posts/utterances.html" . }}
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
{{ partial "posts/math.html" . }}
|
||||||
|
</section>
|
||||||
|
{{ end }}
|
||||||
Loading…
Reference in a new issue