summaryrefslogtreecommitdiff
path: root/templates/index.liquid
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.liquid')
-rw-r--r--templates/index.liquid58
1 files changed, 50 insertions, 8 deletions
diff --git a/templates/index.liquid b/templates/index.liquid
index 9df79fc..e554ac9 100644
--- a/templates/index.liquid
+++ b/templates/index.liquid
@@ -2,30 +2,43 @@
<html>
<head>
<title>How to make a Folkestone.</title>
+<link href='/assets/flickity.css' rel='stylesheet' type='text/css'>
<link href='/assets/css.css' rel='stylesheet' type='text/css'>
</head>
<body>
+<<<<<<< HEAD
+=======
+>>>>>>> eddee7c150388106979c16221b3ee106e53b1990
<div id='header'>
<center>
<h1>How to make a Folkestone.</h1>
- <a href="https://docs.google.com/forms/d/10dqrK_3UZW_xlPWQLERd0xTwVONryyicNuz2aYz3X_I/edit?c=0&w=1"<h2>Participate!</h2></a>
+ <a href="https://docs.google.com/forms/d/10dqrK_3UZW_xlPWQLERd0xTwVONryyicNuz2aYz3X_I/edit?c=0&w=1"><h2>Participate!</h2></a>
<div id='tags'></div>
+<<<<<<< HEAD
</center>
</div>
<br>
+=======
+</div>
+<br>
+
+>>>>>>> eddee7c150388106979c16221b3ee106e53b1990
<div id='body'>
<center>
{% for entry in entries %}
{% unless entry.disabled %}
<div class='cell' data-id='{{ entry.id }}'>
- {{ entry.title }}
+ <div class='title'>
+ {{ entry.title }}
+ </div>
</div>
{% endunless %}
{% endfor %}
+<<<<<<< HEAD
</center>
</div>
@@ -42,24 +55,53 @@
</div>
</center>
+=======
+</div>
+>>>>>>> eddee7c150388106979c16221b3ee106e53b1990
{% for page in pages %}
{% unless page.disabled %}
<div id='{{ page.id }}' class='page'>
- <h2>{{ page.title }}</h2>
- {{ page.body | newline_to_br }}
+ <div class='inner'>
+ <h2>{{ page.title }}</h2>
+ {{ page.body | newline_to_br }}
+ </div>
</div>
{% endunless %}
{% endfor %}
<div id='entry'>
- <div class='close'>&times;</div>
- <div class='media'></div>
- <h2></h2>
- <div class='content'></div>
+ <div class='inner'>
+ <div class='close'>&times;</div>
+ <div class='media'></div>
+ <h2></h2>
+ <div class='content'></div>
+ </div>
+</div>
+
+<div id="testimonials">
+ {% for testimonial in testimonials %}
+ {% unless testimonial.disabled %}
+ <div id='{{ testimonial.id }}' class='testimonial'>
+ <span class="blurb">
+ {{ testimonial.body | newline_to_br }}
+ &mdash;{{ testimonial.byline }}
+ </span>
+ </div>
+ {% endunless %}
+ {% endfor %}
+</div>
+
+<div id="footer">
+ How to make a Folkestone.<br>
+
+ Tokyo University of the Arts<br>
+ Central Saint Martins
+
</div>
</body>
<script src="/assets/jquery.min.js"></script>
+<script src="/assets/flickity.pkgd.js"></script>
<script src="/assets/site.js"></script>
</html>