diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-08-23 16:06:50 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-08-23 16:06:50 +0200 |
| commit | eddee7c150388106979c16221b3ee106e53b1990 (patch) | |
| tree | d63a4a5e676c39c222a9bd100b5fa803e60c3738 /templates/index.liquid | |
| parent | 2b1fe8184068141677c2141eaea1b3dde7447dbf (diff) | |
testimonials carousel
Diffstat (limited to 'templates/index.liquid')
| -rw-r--r-- | templates/index.liquid | 23 |
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 }} + —{{ 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> |
