Add [INDEX/COUNT] prefix for articles in cases (ie sections with Params.Code)
parent
9cf3825835
commit
0308ea1a5d
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: Smartphone
|
title: Smartphone
|
||||||
subtitle: Que faire de notre addiction ?
|
subtitle: Que faire de notre addiction ?
|
||||||
code: ST
|
code: SP
|
||||||
---
|
---
|
||||||
|
|
||||||
Ce dossier réfléchit à...
|
Ce dossier réfléchit à...
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -5,10 +5,10 @@
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{{ template "_internal/pagination.html" . }}
|
|
||||||
{{ range .Paginator.Pages }}
|
{{ range .Paginator.Pages }}
|
||||||
{{ .Render "summary" }}
|
{{ .Render "summary" }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
{{ template "_internal/pagination.html" . }}
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -3,6 +3,29 @@
|
||||||
<time class="post-date" datetime="{{ .Date.Format `2006-01-02T15:04:05Z07:00` | safeHTML }}">
|
<time class="post-date" datetime="{{ .Date.Format `2006-01-02T15:04:05Z07:00` | safeHTML }}">
|
||||||
{{ .Date.Day }} {{ index $.Site.Data.months_fr (printf "%d" .Date.Month) }} {{ .Date.Year }}
|
{{ .Date.Day }} {{ index $.Site.Data.months_fr (printf "%d" .Date.Month) }} {{ .Date.Year }}
|
||||||
</time>
|
</time>
|
||||||
| {{.Title}}
|
|
|
||||||
</a>
|
<!--
|
||||||
|
Well, I am a beginner with Hugo so this is probably like crushing a banana with a rocket.
|
||||||
|
When a post belongs to a "case" (i.e. a section with a code, I'd like to have [INDEX/TOTAL] printed in title.
|
||||||
|
An when a post is on its own, don't print anything.
|
||||||
|
A little bit like : https://www.hacking-social.com/
|
||||||
|
But I don't wan't to write it manually because it could break when adding a blog post in between two existing blog posts.
|
||||||
|
So, iterate over the blog posts with same section as current blog post, order them by date and save the index of current blog post.
|
||||||
|
Maybe there is an easier way to get the same result...
|
||||||
|
-->
|
||||||
|
{{ $currentPost := . }}
|
||||||
|
{{ $currentPostIndex := 1 }}
|
||||||
|
{{ $posts := (where $.Site.RegularPages "CurrentSection.Params.Code" "==" $.CurrentSection.Params.Code )}}
|
||||||
|
{{ $postsSorted := (sort $posts "Date" )}}
|
||||||
|
{{ $postCounts := len $postsSorted }}
|
||||||
|
{{ range $index, $element := $postsSorted }}
|
||||||
|
{{ if eq $element.Title $currentPost.Title }}
|
||||||
|
{{ $currentPostIndex = (add $index 1) }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ with .CurrentSection.Params.Code }}
|
||||||
|
[{{ . }} {{ print $currentPostIndex }}/{{ print $postCounts }}]
|
||||||
|
{{ end }}
|
||||||
|
{{ .Title }}
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -1,12 +1,4 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<section id="main">
|
|
||||||
<h1 id="title">{{ .Title }}</h1>
|
|
||||||
<div>
|
|
||||||
<article id="content">
|
|
||||||
{{ .Content }}
|
|
||||||
</article>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
<aside id="meta">
|
<aside id="meta">
|
||||||
<div>
|
<div>
|
||||||
<section>
|
<section>
|
||||||
|
@ -22,14 +14,17 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ with .Params.tags }}
|
|
||||||
<ul id="tags">
|
|
||||||
{{ range . }}
|
|
||||||
<li> <a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a> </li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
</div>
|
||||||
|
</aside>
|
||||||
|
<section id="main">
|
||||||
|
<h1 id="title">{{ .Title }}</h1>
|
||||||
|
<div>
|
||||||
|
<article id="content">
|
||||||
|
{{ .Content }}
|
||||||
|
</article>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<aside id="prev_next">
|
||||||
<div>
|
<div>
|
||||||
{{ with .PrevInSection }}
|
{{ with .PrevInSection }}
|
||||||
<a class="previous" href="{{ .Permalink }}"> {{ .Title }}</a>
|
<a class="previous" href="{{ .Permalink }}"> {{ .Title }}</a>
|
||||||
|
|
Loading…
Reference in New Issue