diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/default | 16 | ||||
-rw-r--r-- | templates/default.footer | 0 | ||||
-rw-r--r-- | templates/default.head | 11 | ||||
-rw-r--r-- | templates/default.header | 1 | ||||
-rw-r--r-- | templates/none | 6 |
5 files changed, 34 insertions, 0 deletions
diff --git a/templates/default b/templates/default new file mode 100644 index 0000000..8414c8b --- /dev/null +++ b/templates/default @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html lang="en"> +include(templates/default.head) +<body> + <header> + include(templates/default.header) + </header> + sinclude(tmp/tmp.metadata) + sinclude(tmp/tmp.toc) + include(tmp/tmp.body) + sinclude(tmp/tmp.index) + <footer> + include(templates/default.footer) + </footer> +</body> +</html> diff --git a/templates/default.footer b/templates/default.footer new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/templates/default.footer diff --git a/templates/default.head b/templates/default.head new file mode 100644 index 0000000..98d1406 --- /dev/null +++ b/templates/default.head @@ -0,0 +1,11 @@ +<title>Sous le ciel</title> +<link href="/styles/main.css" rel="stylesheet" type="text/css"> +<link rel="shortcut icon" type="image/jpg" href="/img/favicon.ico"/> +<meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1"> +<meta name="googlebot" content="noindex"> +<meta name="og:title" content="Sous le ciel"> +<meta name="og:site_name" content="sousleciel.lol"> +<meta name="og:type" content="website"> +<meta name="og:description" content="Sous le ciel - artistes"> +<meta name="og:image" content="https://sousleciel.lol/img/favicon.io"> diff --git a/templates/default.header b/templates/default.header new file mode 100644 index 0000000..7b540fc --- /dev/null +++ b/templates/default.header @@ -0,0 +1 @@ +<h1><a href="/">Sous le ciel</a></h1> diff --git a/templates/none b/templates/none new file mode 100644 index 0000000..a125d9e --- /dev/null +++ b/templates/none @@ -0,0 +1,6 @@ +<html> +include(templates/default.head) +<body> + include(tmp/tmp.body) +<body> +</html> |