-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (38 loc) · 1.06 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
---
layout: default
title: Articles
description: Posts.
---
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-lg-8 col-max-820">
{% assign filtered_collections = site.collections | where_exp:"item", "item.label != 'posts'" %}
{% for collection in filtered_collections %}
<div class="row">
<div class="col-md-12">
<h1 class="post-title text-center">{{collection.name}}</h3>
</div>
</div>
<ul class="list-unstyled ul-no-style">
{% for post in collection.docs %}
{% include blog_item.html post=post %}
{% endfor %}
</ul>
{% endfor %}
<!--
<div class="row">
<div class="col-md-12">
<h3 class="section-title text-center">Blog Posts</h3>
</div>
</div>
<ul class="list-unstyled ul-no-style">
{% comment %}
{% for post in site.posts %}
{% include blog_item.html post=post %}
{% endfor %}
{% endcomment %}
</ul>
-->
</div>
</div>
</div>