-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 931 Bytes
/
index.html
File metadata and controls
37 lines (37 loc) · 931 Bytes
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
---
layout: default
---
<section class="hero">
<div class="hero-body">
<div class="container">
<h1 class="title">Posts</h1>
</div>
</div>
</section>
<div class="columns narrow">
<div class="column">
<ul class="post-list">
{% for post in site.posts %}
<li>
<div class="card is-fullwidth">
<header class="card-header">
<p class="card-header-title">
{{ post.title }}
</p>
</header>
<div class="card-content">
<div class="content">
{{ post.date | date: "%b %-d, %Y" }}
</div>
</div>
<footer class="card-footer">
<a class="card-footer-item" href="{{ post.url | prepend: site.baseurl }}">
Read
</a>
</footer>
</div>
</li>
{% endfor %}
</ul>
</div>
</div>