diff options
author | RochDLY <roch.delannay@gmail.com> | 2023-11-07 15:08:43 +0100 |
---|---|---|
committer | RochDLY <roch.delannay@gmail.com> | 2023-11-07 15:08:43 +0100 |
commit | d83836a971f54982bfcde5750834dfe4da369dc1 (patch) | |
tree | 55e8ac3e204ad4bf708fde2700d75dfc261f3c17 /templates/partials/head.html | |
download | pandoc-site-d83836a971f54982bfcde5750834dfe4da369dc1.tar.gz pandoc-site-d83836a971f54982bfcde5750834dfe4da369dc1.tar.bz2 pandoc-site-d83836a971f54982bfcde5750834dfe4da369dc1.zip |
git init du carnet généré avec make et pandoc
Diffstat (limited to 'templates/partials/head.html')
-rw-r--r-- | templates/partials/head.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/partials/head.html b/templates/partials/head.html new file mode 100644 index 0000000..2514919 --- /dev/null +++ b/templates/partials/head.html @@ -0,0 +1,22 @@ +<meta charset="utf-8"/> + +<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> + +<title>${if(pagetitle)}${pagetitle}${endif}</title> + +${if(author)} +<meta name="author" content="${author}" /> +${endif} + +${if(description-meta)} +<meta name="description" content="${description-meta}" /> +${endif} + +${if(date)} +<meta name="dcterms.date" content="${date-meta}" /> +${endif} + +<meta name="generator" content="Pandoc, GNU make" /> +<!-- pandoc - https://pandoc.org/ --> +<!-- gnu make - https://www.gnu.org/software/make/ --> +<link rel="stylesheet" href="/css/styles.css" /> |