This commit is contained in:
parent
dc089fecc3
commit
d069e4dd8b
3 changed files with 75 additions and 1 deletions
63
layouts/books/single.html
Normal file
63
layouts/books/single.html
Normal file
|
@ -0,0 +1,63 @@
|
|||
{{ define "header" }}
|
||||
{{/* We can override any block in the baseof file be defining it in the template */}}
|
||||
{{ partial "page-header.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
{{ $section := .Site.GetPage "section" .Section }}
|
||||
<article class="flex-l flex-wrap justify-between mw8 center ph3">
|
||||
<header class="mt4 w-100">
|
||||
{{/* partial "social-share.html" . */}}
|
||||
<h1 class="f1 athelas mt3 mb1">
|
||||
{{- .Title -}}
|
||||
</h1>
|
||||
{{ with .Params.author }}
|
||||
<p class="tracked">
|
||||
By <strong>
|
||||
{{ if reflect.IsSlice . }}
|
||||
{{ delimit . ", " | markdownify }}
|
||||
{{else}}
|
||||
{{ . | markdownify }}
|
||||
{{ end }}
|
||||
</strong>
|
||||
</p>
|
||||
{{ end }}
|
||||
{{/* Hugo uses Go's date formatting is set by example. Here are two formats */}}
|
||||
<time class="f6 mv4 dib tracked" {{ printf `datetime="%s"` (.Date.Format "2006-01-02T15:04:05Z07:00") | safeHTMLAttr }}>
|
||||
{{- .Date.Format "January 2, 2006" -}}
|
||||
</time>
|
||||
|
||||
{{/*
|
||||
Show "reading time" and "word count" but only if one of the following are true:
|
||||
1) A global config `params` value is set `show_reading_time = true`
|
||||
2) A section front matter value is set `show_reading_time = true`
|
||||
3) A page front matter value is set `show_reading_time = true`
|
||||
*/}}
|
||||
{{ if (or (eq (.Param "show_reading_time") true) (eq $section.Params.show_reading_time true) )}}
|
||||
<span class="f6 mv4 dib tracked"> - {{ .ReadingTime}} minutes read</span>
|
||||
<span class="f6 mv4 dib tracked"> - {{ .WordCount}} words</span>
|
||||
{{ end }}
|
||||
</header>
|
||||
<div class="nested-copy-line-height lh-copy {{ $.Param "post_content_classes" | default "serif"}} f5 nested-links nested-img mid-gray pr4-l w-two-thirds-l">
|
||||
{{- partial "author-reader.html" . -}}
|
||||
{{- .Content -}}
|
||||
{{- partial "episodes-list.html" . -}}
|
||||
{{- partial "section.html" . -}}
|
||||
{{- partial "tags.html" . -}}
|
||||
<div class="mt6 instapaper_ignoref">
|
||||
{{ if .Site.DisqusShortname }}
|
||||
{{ template "_internal/disqus.html" . }}
|
||||
{{ end }}
|
||||
{{ if .Site.Params.commentoEnable }}
|
||||
{{- partial "commento.html" . -}}
|
||||
{{ end }}
|
||||
{{- partial "comments.html" . -}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<aside class="w-30-l mt6-l">
|
||||
{{- partial "menu-contextual.html" . -}}
|
||||
</aside>
|
||||
|
||||
</article>
|
||||
{{ end }}
|
8
layouts/partials/section.html
Normal file
8
layouts/partials/section.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
<ul class="pa0">
|
||||
<li class="list">
|
||||
<a href="{{ print "/" .Section ".html" }}" class="link f5 grow no-underline br-pill ba ph3 pv2 mb2 dib black sans-serif">
|
||||
{{/* use Chinese instead of the original display with tag value */}}
|
||||
{{ i18n .Section }}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
|
@ -65,4 +65,7 @@ other = "博客"
|
|||
other = "朗读者"
|
||||
|
||||
[talks]
|
||||
other = "作家说"
|
||||
other = "作家说"
|
||||
|
||||
[books]
|
||||
other = "书目"
|
Loading…
Reference in a new issue