Sligthly adjust post header
parent
89e1349ed9
commit
3c589cd320
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
After Width: | Height: | Size: 67 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 245 KiB |
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
|
@ -7,7 +7,7 @@ footnoteReturnLinkContents: ↩
|
|||
languageCode: fr-fr
|
||||
languageName: Français
|
||||
watch: true
|
||||
paginate: 5
|
||||
paginate: 6
|
||||
|
||||
permalinks:
|
||||
# All pages under posts section will have this link structure
|
||||
|
|
|
@ -4,8 +4,11 @@ date: 2021-05-10
|
|||
categories:
|
||||
- Technologie
|
||||
- Réflexions
|
||||
summary: Ce billet est le premier d'une série qui s'intéresse à la place du smartphone dans nos vies.
|
||||
---
|
||||
|
||||
## Pourquoi ?
|
||||
|
||||
Octobre 2020, dans un monde entre deux confinements, dans une folie constante où rien n'est sûr, j'ai le luxe de partir en vacances, loin du vacarme. 10 jours en Auvergne pour parcourir la chaîne des Puy, bouquiner, faire des feux, se marrer, se retrouver un peu. En cette période de matraquage informationnel autour du COVID, et alors que j'entretiens une relation ambiguë avec les outils numériques, je décide de laisser mon smartphone chez moi, convaincu que j'aurais bien assez pour m'occuper, et curieux de voir les effets que cet absence inédite produiraient sur moi.
|
||||
|
||||
Et alors que mon téléphone dormait entre mes chaussettes à Compiègne, dès que j'avais un moment pour moi, je le cherchais frénétiquement dans ma poche. Avant d'aller aux toilettes, après avoir fini de lire, en partant le matin... Ces réflexes sont bien entendu issus d'une habitude : mes journées sont habituellement jalonnée par des moments passés sur mon téléphone, alors je vérifie que je l'ai régulièrement. De la même manière que si j'ai l'habitude de porter un chapeau, je m'assurerai de l'avoir à chaque fois que je m'aventure dehors et je vérifierai sa présence régulièrement.
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
<section class="column is-7">
|
||||
<div>
|
||||
<article>
|
||||
{{ with .Params.introduction }}
|
||||
{{ with .Params.summary }}
|
||||
{{ . }}
|
||||
<br /><br />
|
||||
{{ end }}
|
||||
|
|
|
@ -32,10 +32,10 @@
|
|||
</a>
|
||||
</div>
|
||||
<hr style="margin: 1rem 0;">
|
||||
<!-- If a special introduction (before ToC) have been defined,
|
||||
<!-- If a special summary (before ToC) have been defined,
|
||||
prefer using it because it has more chances to be a better summary -->
|
||||
{{ if (isset .Params "introduction" )}}
|
||||
{{ .Params.introduction }}
|
||||
{{ if (isset .Params "summary" )}}
|
||||
{{ .Params.summary }}
|
||||
{{ else }}
|
||||
{{ .Content | plainify | safeHTML | truncate 300 "..." }}
|
||||
{{ end }}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<footer class="footer">
|
||||
<footer class="footer mt-6">
|
||||
<div class="has-text-centered">
|
||||
Conçu avec <a href="https://gohugo.io/">Hugo</a> et <a href="https://bulma.io">Bulma</a>.
|
||||
Les sources sont disponibles <a href="https://git.chosto.me/Chosto/blog">ici</a>.
|
||||
|
|
|
@ -22,16 +22,16 @@
|
|||
<div class="level-left">
|
||||
<div class="level-item has-text-left">
|
||||
<time class="" datetime="{{ .Date.Format `2006-01-02T15:04:05Z07:00` | safeHTML }}">
|
||||
<p class="mb-2">📅 Article publié le {{ .Date.Day }} {{ index $.Site.Data.months_fr (printf "%d" .Date.Month) }} {{ .Date.Year }}</p>
|
||||
<p>✏️ Dernière modification le {{ .Lastmod.Day }} {{ index $.Site.Data.months_fr (printf "%d" .Lastmod.Month) }} {{ .Lastmod.Year }}</p>
|
||||
<p class="mb-2">📅 Article publié le <strong>{{ .Date.Day }} {{ index $.Site.Data.months_fr (printf "%d" .Date.Month) }} {{ .Date.Year }}</strong></p>
|
||||
<p>✏️ Dernière modification le <strong>{{ .Lastmod.Day }} {{ index $.Site.Data.months_fr (printf "%d" .Lastmod.Month) }} {{ .Lastmod.Year }}</strong></p>
|
||||
</time>
|
||||
</div>
|
||||
</div>
|
||||
<div class="level-right">
|
||||
<div class="level-item has-text-right">
|
||||
<div>
|
||||
<p class="mb-2">🕑 Environ {{ div .FuzzyWordCount 230 }} minutes de lecture</p>
|
||||
<p>#️{{ .FuzzyWordCount }} mots</p>
|
||||
<p class="mb-2">🕑 Environ <strong>{{ div .FuzzyWordCount 230 }} minutes</strong> de lecture</p>
|
||||
<p>#️ <strong>{{ .FuzzyWordCount }} mots</strong></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{{ $pag := $.Paginator }}
|
||||
{{ if gt $pag.TotalPages 1 -}}
|
||||
<nav class="my-5 pagination is-centered" role="navigation" aria-label="pagination">
|
||||
<nav class="mt-5 pagination is-centered" role="navigation" aria-label="pagination">
|
||||
{{ with $pag.First -}}
|
||||
<ul class="pagination-list">
|
||||
{{ end -}}
|
||||
|
|
Loading…
Reference in New Issue