-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.html
40 lines (40 loc) · 947 Bytes
/
project.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
31
32
33
34
35
36
37
38
39
40
---
layout: default
custom_css: /css/project.css
---
<article>
<section class="tagline">
{{ content }}
</section>
<div class="stack">
{% for category in page.product_categories %}
<section>
<h2>{{ category.label }}</h2>
<ul>
{% for product in category.products %}
<li class="product">
<div class="logo">
{% if product.logo %}
<img src="{{ product.logo }}" alt="{{ product.label }}" />
{% endif %}
</div>
<h3>
<a href="{{ product.url }}">{{ product.label }}</a>
</h3>
<p>
<span>{{ product.tagline }}</span>
<a href="{{ product.url }}">»</a>
</p>
</li>
{% endfor %}
</ul>
</section>
{% endfor %}
</div>
<div class="clear"></div>
{% if page.extra_content %}
<section>
{{ page.extra_content }}
</section>
{% endif %}
</article>