-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 1.03 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
---
layout: default
---
<div class="post-header">
<header class="wrapper">
<h1 class="post-title home">Personas</h1>
</header>
</div>
<div class="wrapper">
<ul class="post-list">
{% for page in site.pages %}
{% if page.path contains 'persona' %}
<li>
<a class="post-link" href="{{ page.url | prepend: site.baseurl }}">
<img src="{{ site.baseurl }}/assets/{{ page.image | downcase }}.jpg" />
<div class="details">
<span class="title">{{ page.title }}</span>
<span class="demographic">
{% for demographic in page.demographic %}
{% if forloop.index != 1 %}, {% endif %}{{ demographic }}
{% endfor %}
</span>
</div>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>