-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 927 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
---
layout: layout.html
---
<h1 style="display: none;">FrostKiwi's Secrets</h1>
{% for post in collections.post | reverse %}
{% if not post.data.wip %}
<a href="{{ post.url }}">
<div class="post-card">
<img src="{{ post.data.image }}" alt="{{ post.data.title }}" class="post-image">
<div class="post-content">
<h2>{{ post.data.title }}</h2>
<div class="subinfo">
<span class="post-date">{{ post.date | dateFormat("yyyy.MM.dd") }}</span>
{% if post.data.publicTags %}
<div>
{% for tag in post.data.publicTags %}
<span class="post-tag">{{ tag }}</span>
{% endfor %}
</div>
{% endif %}
</div>
<span class="post-description">{{ post.data.description }}</span>
</div>
</div>
</a>
{% endif %}
{% endfor %}
<br>
<img alt="Kiwi in the snow" style="filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, .25));" src="/assets/kiwis/traced_kiwi.svg">