Compare commits

..

No commits in common. "a4bff7623dc7c4b05b59714d7b919857a876422c" and "df22cb2b87cf9bc1a9da372e17d4c4eedfc3efff" have entirely different histories.

10 changed files with 21 additions and 31 deletions

View File

@ -4,7 +4,7 @@
<ul class="post-list"> <ul class="post-list">
{{ range .Pages.ByDate.Reverse }} {{ range .Pages.ByDate.Reverse }}
{{ partial "post.html" (dict "page" .) }} {{ partial "post.html" . }}
{{ end }} {{ end }}
</ul> </ul>
{{ end }} {{ end }}

View File

@ -33,10 +33,10 @@
{{ $pages := (site.Taxonomies.series.Get .Data.Term).Pages.ByDate.Reverse }} {{ $pages := (site.Taxonomies.series.Get .Data.Term).Pages.ByDate.Reverse }}
<nav id="SeriesNavigation" class="container"> <nav id="SeriesNavigation" class="container">
{{ with $pages.Prev page }} {{ with $pages.Prev page }}
{{ partial "serieslink.html" (dict "direction" "previous" "link" .RelPermalink "page" .) }} {{ partial "serieslink.html" (dict "direction" "previous" "link" .RelPermalink "term" $term "page" .) }}
{{ end }} {{ end }}
{{ with $pages.Next page }} {{ with $pages.Next page }}
{{ partial "serieslink.html" (dict "direction" "next" "link" .RelPermalink "page" .) }} {{ partial "serieslink.html" (dict "direction" "next" "link" .RelPermalink "term" $term "page" .) }}
{{ end }} {{ end }}
</nav> </nav>
{{ end }} {{ end }}

View File

@ -4,7 +4,7 @@
<ul class="post-list"> <ul class="post-list">
{{ range (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }} {{ range (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
{{ if .Params.favorite }}{{ partial "post.html" (dict "page" .) }}{{ end }} {{ if .Params.favorite }}{{ partial "post.html" . }}{{ end }}
{{ end }} {{ end }}
</ul> </ul>
{{ end }} {{ end }}

View File

@ -4,7 +4,7 @@
{{ i18n "recentPosts" }}: {{ i18n "recentPosts" }}:
<ul class="post-list"> <ul class="post-list">
{{ range first 10 (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }} {{ range first 10 (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
{{ partial "post.html" (dict "page" .) }} {{ partial "post.html" . }}
{{ end }} {{ end }}
</ul> </ul>

View File

@ -1,8 +0,0 @@
{{- $term := index (.page.GetTerms "series") 0 -}}
{{- $divider := $term.Params.divider -}}
{{- if (and $divider (strings.Contains .page.Title $divider)) -}}
{{- $rest := after 1 (split .page.Title $divider) -}}
{{- .scratch.Set "name" (delimit $rest $divider) -}}
{{- else -}}
{{- .scratch.Set "name" .page.Title -}}
{{- end -}}

View File

@ -1,18 +1,12 @@
<li> <li>
{{- $scratch := newScratch -}} <a href="{{ .Permalink }}" class="post-title">{{ if .Params.favorite }}{{ partial "icon.html" "star" }}{{ end }} {{ .Title }}</a>
{{- if .seriesName -}} {{ if (not (eq .WordCount 0)) }}
{{- partial "nameinseries" (dict "page" .page "scratch" $scratch) -}} <p class="post-wordcount">{{ i18n "nWords" .WordCount }}, {{ i18n "nMinutesToRead" .ReadingTime }}.</p>
{{- else -}}
{{- $scratch.Set "name" (.page.Title) -}}
{{- end -}}
<a href="{{ .page.Permalink }}" class="post-title">{{ if .page.Params.favorite }}{{ partial "icon.html" "star" }}{{ end }} {{ $scratch.Get "name" }}</a>
{{ if (not (eq .page.WordCount 0)) }}
<p class="post-wordcount">{{ i18n "nWords" .page.WordCount }}, {{ i18n "nMinutesToRead" .page.ReadingTime }}.</p>
{{ end }} {{ end }}
{{ if .page.Params.status }} {{ if .Params.status }}
<p class="post-status"> <p class="post-status">
{{ partial "seriesstatus.html" .page.Params.status }} {{ partial "seriesstatus.html" .Params.status }}
</p> </p>
{{ end }} {{ end }}
<p class="post-preview">{{ .page.Summary }} {{ if .page.Truncated }}. . .{{ end }}</p> <p class="post-preview">{{ .Summary }} {{ if .Truncated }}. . .{{ end }}</p>
</li> </li>

View File

@ -3,9 +3,13 @@
{{ if eq .direction "previous" }}{{ partial "icon.html" "chevrons-left" }}{{ end }} {{ if eq .direction "previous" }}{{ partial "icon.html" "chevrons-left" }}{{ end }}
<div class="title-subtitle"> <div class="title-subtitle">
{{ title .direction }} in Series {{ title .direction }} in Series
{{ $scratch := newScratch -}} {{ $divider := .term.Params.divider }}
{{- partial "nameinseries.html" (dict "page" .page "scratch" $scratch) -}} {{ if (and $divider (strings.Contains .page.Title $divider)) }}
<div class="title">{{ $scratch.Get "name" }}</div> {{ $rest := after 1 (split .page.Title $divider) }}
<div class="title">{{ delimit $rest $divider }}</div>
{{ else }}
<div class="title">{{ .page.Title }}</div>
{{ end }}
</div> </div>
{{ if eq .direction "next" }}{{ partial "icon.html" "chevrons-right" }}{{ end }} {{ if eq .direction "next" }}{{ partial "icon.html" "chevrons-right" }}{{ end }}
</a> </a>

View File

@ -11,7 +11,7 @@
<ul class="post-list"> <ul class="post-list">
{{ range $pages }} {{ range $pages }}
{{ partial "post.html" (dict "page" . "seriesName" true) }} {{ partial "post.html" . }}
{{ end }} {{ end }}
</ul> </ul>
{{ end }} {{ end }}

View File

@ -4,7 +4,7 @@
<ul class="post-list"> <ul class="post-list">
{{ range sort .Pages "Title" }} {{ range sort .Pages "Title" }}
{{ partial "post.html" (dict "page" .) }} {{ partial "post.html" . }}
{{ end }} {{ end }}
</ul> </ul>
{{ end }} {{ end }}

View File

@ -3,7 +3,7 @@
<ul class="post-list"> <ul class="post-list">
{{ range .Pages.ByDate.Reverse }} {{ range .Pages.ByDate.Reverse }}
{{ partial "post.html" (dict "page" .) }} {{ partial "post.html" . }}
{{ end }} {{ end }}
</ul> </ul>
{{ end }} {{ end }}