forked from ahmadajmi/type
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (46 loc) · 1.25 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
39
40
41
42
43
44
45
46
47
48
49
---
layout: default
---
<div class='o-wrapper'>
<div class='o-grid'>
{% if page.url == "/" %}
{% for post in site.posts %}
{% if post.pinned == true %}
{% if post.published != 'private' %}
{% include_cached post-card.html
pcontent=post.content
pdate=post.date
pfeatured=post.featured
ppinned=post.pinned
precap=post.recap
ptags=post.tags
ptitle=post.title
purl=post.url
sbaseurl=site.baseurl
%}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% for post in paginator.posts %}
{% unless post.pinned %}
{% if post.published != 'private' %}
{% include_cached post-card.html
pcontent=post.content
pdate=post.date
pfeatured=post.featured
ppinned=post.pinned
precap=post.recap
ptags=post.tags
ptitle=post.title
purl=post.url
sbaseurl=site.baseurl
%}
{% endif %}
{% endunless %}
{% endfor %}
</div>
<div class='o-grid'>
{% include pagination.html %}
</div>
</div>