forked from CloudCannon/fur-jekyll-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·30 lines (29 loc) · 868 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
title: Find Your Spirit Animal
hero: Find your spirit animal
subtitle: The animal friendly clothing company
---
<div class="content" id="products">
<section>
<div class="container">
<p class="editor-link" style="text-align: center;"><a href="cloudcannon:collections/_products" class="btn"><strong>✎</strong> Manage products</a></p>
<ul class="product-list">
{% for product in site.products %}
<li>
{% include product-styles.html product=product %}
<div class="product-details">
<h4><a href="{{ product.url }}">{{ product.name }}</a></h4>
<div class="product-description">
{{ product.description_markdown | truncate: 45 | markdownify }}
</div>
<p>${{ product.price }}</p>
</div>
</li>
{% endfor %}
<li></li>
<li></li>
<li></li>
</ul>
</div>
</section>
</div>