summaryrefslogtreecommitdiff
path: root/templates/index.liquid
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-08-23 16:06:50 +0200
committerJules Laplace <julescarbon@gmail.com>2017-08-23 16:06:50 +0200
commiteddee7c150388106979c16221b3ee106e53b1990 (patch)
treed63a4a5e676c39c222a9bd100b5fa803e60c3738 /templates/index.liquid
parent2b1fe8184068141677c2141eaea1b3dde7447dbf (diff)
testimonials carousel
Diffstat (limited to 'templates/index.liquid')
-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>