-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
50 lines (43 loc) · 1.21 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
layout: default
---
<div id="top-gradient"></div>
<section id="about">
<div class="content">
<div id="intro">
{% include intro.html %}
</div>
<nav>
<ul id="about-links">
<li><a href="#" class="tell">Make things? Tell us!</a></li>
<li><a href="#" class="help">Want to help?</a></li>
</ul>
</nav>
<div id="tell">
{% include tell.html %}
</div>
<div id="help">
{% include help.html %}
</div>
</div>
</section>
<div id="bottom-gradient"></div>
<nav id="filters">
<ul>
<li><a href="#" data-filter=".maker">Makers</a></li>
<li><a href="#" data-filter=".made">Made</a></li>
<li><a href="#" data-filter=".digital">Digital</a></li>
<li><a href="#" data-filter=".physical">Physical</a></li>
</ul>
</nav>
<section id="card-wrapper">
<div id="cards">
{% for post in site.posts %}
<div class="card {% for class in post.category %}{{ class }} {% endfor %}">
<div class="inner-card {{ post.img_class }}" {% if post.color %}style="background-color:#{{ post.color }}"{% endif %}>
<a href="{{ post.homepage }}"><img src="{{ post.image }}"></a>
</div>
</div>
{% endfor %}
</div>
</section>