-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
executable file
·47 lines (45 loc) · 1.37 KB
/
blog.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
---
layout: default
title: Blog
---
<h1>Latest Posts</h1>
<div class="columns">
{% for post in site.posts limit: 3 %}
<div class="column is-one-third">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</div>
{% endfor %}
</div>
<div class="columns">
{% for post in site.posts limit: 3 offset: continue %}
<div class="column is-one-third">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</div>
{% endfor %}
</div>
<div class="columns">
{% for post in site.posts limit: 3 offset: continue %}
<div class="column is-one-third">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</div>
{% endfor %}
</div>
<div class="columns">
{% for post in site.posts limit: 3 offset: continue %}
<div class="column is-one-third">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</div>
{% endfor %}
</div>
<div class="columns">
{% for post in site.posts limit: 3 offset: continue %}
<div class="column is-one-third">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</div>
{% endfor %}
</div>