* intégration de "previous page/next page" (single.html)
* mise en commentaire du breadcrumb * dans config : removePathAccents * mise en commentaire XMPP * CSS : typo des liens, taille nav, taille du titre
This commit is contained in:
@@ -23,7 +23,7 @@ main {
|
||||
display: block;
|
||||
margin: 0;
|
||||
padding: 1em 1em;
|
||||
background-color: FEFEFD; }
|
||||
background-color: #FEFEFD; }
|
||||
/*couleur yp*/
|
||||
@media (min-width: 48em) {
|
||||
main {
|
||||
@@ -41,7 +41,7 @@ main {
|
||||
main {
|
||||
margin: 0 29%; } }
|
||||
a {
|
||||
font-family: FreeSerif, serif;
|
||||
font-family: Ubuntu, sans-serif;
|
||||
color: #07608f;
|
||||
text-decoration: none; }
|
||||
|
||||
@@ -187,7 +187,7 @@ nav a {
|
||||
color: #444;
|
||||
padding: .25em .63em;
|
||||
font-family: Infini, sans-serif;
|
||||
font-size: 1.2em;
|
||||
font-size: 1em;
|
||||
display: block; }
|
||||
|
||||
nav li:hover {
|
||||
@@ -235,7 +235,7 @@ nav li:hover {
|
||||
.myname {
|
||||
margin: 0 auto 0 0;
|
||||
padding: 0 0 .25em .25em;
|
||||
font-size: 2em; }
|
||||
font-size: 1.5em; }
|
||||
|
||||
.myname a {
|
||||
color: #804000;
|
||||
|
||||
@@ -6,6 +6,7 @@ newContentEditor = "nvim"
|
||||
# mainSections = ["Récits"]["Recueils"]
|
||||
# disqusShortname = "example"
|
||||
paginate = 10
|
||||
removePathAccents = true
|
||||
|
||||
[params]
|
||||
author = "Yves Picard"
|
||||
@@ -21,7 +22,7 @@ paginate = 10
|
||||
email = "rechampir@rechampir.net"
|
||||
mastodon = "@yv_pic"
|
||||
twitter = "yv_pic"
|
||||
xmpp = "@yvespicard@farmserv.org"
|
||||
# xmpp = "@yvespicard@farmserv.org"
|
||||
|
||||
[taxonomies]
|
||||
year = "year"
|
||||
|
||||
@@ -30,17 +30,14 @@ Le blog Rechampir est ici : [https://rechampir.net/](https://rechampir.net/)
|
||||
{{< social >}}
|
||||
|
||||
Ce qu'il reste à faire pour la v. 0.9
|
||||
* arborescence complète : ok mais les pages "sections" n'affichent rien & comment prendre en compte les sous-dossiers ?
|
||||
* noms de dossiers : tenir compte du fil d'Ariane
|
||||
* résumés à compléter
|
||||
* arborescence complète
|
||||
|
||||
|
||||
Pour la v. 1 :
|
||||
* imports des textes
|
||||
* résumés à compléter
|
||||
|
||||
Fonctionnalités à intégrer (layouts)
|
||||
* intégrer ensuite chapitre avant/chapitre après
|
||||
|
||||
Fonctionnalités à intégrer
|
||||
* typos Infini et Ubuntu à embarquer
|
||||
* numérotation des paragraphes ?
|
||||
|
||||
Ce qui ne marche pas encore :
|
||||
* le lien social XMPP
|
||||
|
||||
@@ -19,7 +19,26 @@
|
||||
{{ else }}
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
{{ partial "breadcrumbs.html" . }}
|
||||
{{ if or (.PrevInSection) (.NextInSection) }}
|
||||
<div class="next-prev">
|
||||
<hr>
|
||||
<div class="g-two-up">
|
||||
{{with .PrevInSection }}
|
||||
<div>
|
||||
<h3>Previous</h3>
|
||||
<p><a href=" {{ .Permalink }}">{{ .Title | safeHTML }}</a></p>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{with .NextInSection }}
|
||||
<div>
|
||||
<h3>Next</h3>
|
||||
<p><a href=" {{ .Permalink }}">{{ .Title | safeHTML }}</a></p>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{/* partial "breadcrumbs.html" . */}}
|
||||
</article>
|
||||
</main>
|
||||
{{ end }}
|
||||
|
||||
Reference in New Issue
Block a user