summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/index.liquid23
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/index.liquid b/templates/index.liquid
index 2756620..2bc3a92 100644
--- a/templates/index.liquid
+++ b/templates/index.liquid
@@ -2,6 +2,7 @@
<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>
@@ -45,7 +46,29 @@
</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>