diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/partials/head.html | 2 | ||||
-rw-r--r-- | templates/partials/nav.html | 2 | ||||
-rw-r--r-- | templates/post.html | 8 |
3 files changed, 6 insertions, 6 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 diff --git a/templates/post.html b/templates/post.html index c349cf0..6d24e5d 100644 --- a/templates/post.html +++ b/templates/post.html @@ -17,15 +17,15 @@ ${table-of-contents} ${if(title)} <header class="header-bloc"> <h1>${title}</h1> -${if(subtitle)} +<!-- ${if(subtitle)} <h2>${subtitle}</h2> -${endif} +${endif} --> ${if(date)} <time>${date}</time> ${endif} -${if(author)} +<!-- ${if(author)} <p>${author}</p> -${endif} +${endif} --> </header> ${endif} ${if(body)} |