diff options
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" /> |