diff options
author | RochDLY <roch.delannay@gmail.com> | 2023-11-07 15:26:34 +0100 |
---|---|---|
committer | RochDLY <roch.delannay@gmail.com> | 2023-11-07 15:26:34 +0100 |
commit | 9b3e9c39181d88940ab13b5b756aca386845eb52 (patch) | |
tree | ed7f35c22c1f414470731ce99ee50d7a7c0eb425 /templates/partials | |
parent | d83836a971f54982bfcde5750834dfe4da369dc1 (diff) | |
download | pandoc-site-9b3e9c39181d88940ab13b5b756aca386845eb52.tar.gz pandoc-site-9b3e9c39181d88940ab13b5b756aca386845eb52.tar.bz2 pandoc-site-9b3e9c39181d88940ab13b5b756aca386845eb52.zip |
changement de l'appel de la métadonnées title pour site-title (sinon il y a des conflits entre le title de la page et le title du site) + changement de Cours pour Enseignements dans le <nav> + creation du CNAME dans le dossier static/ car sinon le supprime le CNAME
Diffstat (limited to 'templates/partials')
-rw-r--r-- | templates/partials/head.html | 2 | ||||
-rw-r--r-- | templates/partials/nav.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/partials/head.html b/templates/partials/head.html index 2514919..ac081f1 100644 --- a/templates/partials/head.html +++ b/templates/partials/head.html @@ -2,7 +2,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> -<title>${if(pagetitle)}${pagetitle}${endif}</title> +<title>${site-title} | ${if(pagetitle)}${pagetitle}${endif}</title> ${if(author)} <meta name="author" content="${author}" /> diff --git a/templates/partials/nav.html b/templates/partials/nav.html index 264edea..bf5024a 100644 --- a/templates/partials/nav.html +++ b/templates/partials/nav.html @@ -2,6 +2,6 @@ <div> <a href="/">Accueil</a> <a href="/pages/publications.html">Publications savantes</a> - <a href="/pages/cours.html">Cours</a> + <a href="/pages/cours.html">Enseignements</a> </div> </nav>
\ No newline at end of file |