-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (38 loc) · 1.16 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
---
layout: default
---
<ul class="block one posts">
{% for post in site.posts limit:1 %}
<li class="block ones posts__post">
<a class="post-link" href="{{site.baseurl}}{{post.url}}"></a>
<div class="post-hero" style="background-image: url({{post.hero}})"></div>
<div class="post__info">
<h2>
{{ post.title }}
</h2>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<article class="post__content">
{{ post.content }}
</article>
</div>
<div class="clear"></div>
</li>
{% endfor %}
{% for post in site.posts offset:1 limit: 4%}
<li class="block twos posts__post">
<a class="post-link" href="{{site.baseurl}}{{post.url}}"></a>
<div class="post-hero" style="background-image: url({{post.hero}})"></div>
<div class="post__info">
<h2>
{{ post.title }}
</h2>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<article class="post__content">
{{ post.content }}
</article>
</div>
<div class="clear"></div>
</li>
{% endfor %}
<div class="clear"></div>
</ul>