summaryrefslogtreecommitdiff
path: root/templates/index.liquid
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.liquid')
-rw-r--r--templates/index.liquid99
1 files changed, 99 insertions, 0 deletions
diff --git a/templates/index.liquid b/templates/index.liquid
new file mode 100644
index 0000000..fb00b84
--- /dev/null
+++ b/templates/index.liquid
@@ -0,0 +1,99 @@
+<!DOCTYPE html>
+<html lang="en" class="loading">
+<head>
+ <title>
+ Pepper's Paintings
+ </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="Official site of painter Andrew Fenlon" />
+ <meta name="author" content="Andrew Fenlon">
+
+ <meta property="og:title" content="Andrew Fenlon" />
+ <meta property="og:type" content="website" />
+ <meta property="og:image" content="" />
+ <meta property="og:url" content="" />
+ <meta property="og:site_name" content="Tree" />
+
+ <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 %}
+ <link rel="stylesheet" href="/assets/css/jquery.fullpage.css">
+ <link rel="stylesheet" href="/assets/css/ionicons.css">
+ <link rel="stylesheet" href="/assets/css/css.css">
+{% else %}
+ <link rel="stylesheet" href="/assets/css/jquery.fullpage.css">
+ <link rel="stylesheet" href="/assets/css/ionicons.css">
+ <link rel="stylesheet" href="/assets/css/css.css">
+{% endif %}
+
+</head>
+
+<body>
+
+<!--
+<div id="fullpage">
+{% for painting in paintings %}
+ {% unless painting.disabled %}
+ <div class="section {% if painting.center %}center{% endif %}" data-image="{{ painting.image.uri }}">
+ {% unless painting.title contains "IMG" %}
+ <div class="plaque">
+ <b>{{painting.title}}</b>{% if painting.date %}, {{painting.date}}.{% endif %} {{painting.medium}}
+ </div>
+ {% endunless %}
+ </div>
+ {% endunless %}
+{% endfor %}
+</div>
+
+
+<div id="rapper">
+
+ <div id="nav">
+ <img id="logo" src="/assets/img/sig.png"></div>
+ </div>
+
+ {% for page in pages %}
+ {% unless page.disabled %}
+ <div class="page" id="{{page.id}}">
+ <div class="content">
+ {{ page.body }}
+ </div>
+ </div>
+ {% endunless %}
+ {% endfor %}
+
+</div>
+
+<div id="list">
+</div>
+
+<div id="mobile-nav">
+ <span class="pages">
+ {% for page in pages %}
+ {% unless page.disabled %}
+ <span><a href="/page/{{page.id}}">{{page.title}}</a></span>
+ {% endunless %}
+ {% endfor %}
+ <span><a href="/paintings"><span class='ion-grid'></span><span class="nudge">See All </span></a></span>
+ </span>
+</div>
+
+<div id="close">
+</div>
+-->
+
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
+ <script defer async src="https://www.youtube.com/iframe_api"></script>
+
+ <script src="/bundle.js"></script>
+</body>
+</html>