-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·41 lines (37 loc) · 796 Bytes
/
Copy pathindex.html
File metadata and controls
executable file
·41 lines (37 loc) · 796 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
38
39
40
41
---
layout: default
---
{% include hero.html %}
<div class="container">
<div class="row">
<div class="col col-12">
{% if site.posts.size > 0 %}
<h4 class="lates-title">Latest Posts</h4>
{% endif %}
</div>
</div>
</div>
<div class="container">
<div class="row">
{% if site.posts.size > 0 %}
{% for post in paginator.posts %}
<div class="post-wrapper"
{% if post.tags %}
{% for tag in post.tags %}
data-{{ tag }}
{% endfor %}
{% endif %}>
<article class="post-preview">
{% include article-content.html %}
{% for tag in site.data.tags %}
<span class="tag" data-tag="{{tag}}">
{{ site.data.format[tag] }}
</span>
{% endfor %}
</article>
</div>
{% endfor %}
{% endif %}
</div>
</div>
{% include pagination.html %}