summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-08-16 14:40:34 +0200
committerJules Laplace <julescarbon@gmail.com>2021-08-16 14:40:34 +0200
commit9ae202820b698796f93b929b3e30cd499de796a1 (patch)
tree3bec25bffed8e1a3a8fdf4270fb748b3f2fafdca /templates
init site
Diffstat (limited to 'templates')
-rw-r--r--templates/_footer.liquid8
-rw-r--r--templates/_header.liquid38
-rw-r--r--templates/home.liquid17
3 files changed, 63 insertions, 0 deletions
diff --git a/templates/_footer.liquid b/templates/_footer.liquid
new file mode 100644
index 0000000..e02b928
--- /dev/null
+++ b/templates/_footer.liquid
@@ -0,0 +1,8 @@
+
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
+ <script src="/assets/js/vendor/util.js"></script>
+ <script src="/assets/js/vendor/flickity.pkgd.min.js"></script>
+ <script src="/assets/js/km.js"></script>
+
+</body>
+</html>
diff --git a/templates/_header.liquid b/templates/_header.liquid
new file mode 100644
index 0000000..349ab58
--- /dev/null
+++ b/templates/_header.liquid
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <title>
+ No. 6092
+ </title>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
+ <meta name="apple-mobile-web-app-status-bar-style" content="black">
+ <meta name="apple-mobile-web-app-capable" content="yes">
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+ <meta name="description" content="No. 6092" />
+ <meta name="author" content="Charles Stankievech">
+
+ <meta property="og:title" content="No. 6092" />
+ <meta property="og:type" content="website" />
+ <meta property="og:image" content="" />
+ <meta property="og:url" content="" />
+ <meta property="og:site_name" content="No. 6092" />
+
+ <meta name="apple-mobile-web-app-capable" content="no">
+ <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
+ <link rel="shortcut icon" href="/favicon.ico" />
+ <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:300,400,500|Roboto:300,300i,400,400i,700,700i,900,900i" rel="stylesheet" data-noprefix>
+
+{% if meta.production %}
+{% else %}
+{% endif %}
+ <link rel="stylesheet" href="/assets/css/flickity.css">
+ <link rel="stylesheet" href="/assets/css/ionicons.css">
+ <link rel="stylesheet" href="/assets/css/fonts.css">
+ <link rel="stylesheet" href="/assets/css/css.css">
+
+</head>
+
+<body>
diff --git a/templates/home.liquid b/templates/home.liquid
new file mode 100644
index 0000000..4ab18c6
--- /dev/null
+++ b/templates/home.liquid
@@ -0,0 +1,17 @@
+{% include "_header" %}
+
+<div class="content page">
+{% for page in pages %}
+ {% unless page.hidden %}
+ {% if homepage.title_italics %}
+ <i>{{homepage.title}}</i><br>
+ {% else %}
+ {{homepage.title}}<br>
+ {% endif %}
+ {{ homepage.text | newline_to_br }}
+ </a>
+ {% endunless %}
+{% endfor %}
+</div>
+
+{% include "_footer" %}