-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnews.html
32 lines (29 loc) · 912 Bytes
/
news.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
---
layout: default
---
<article id="main">
<header class="special container">
<span class="icon fa-newspaper-o"></span>
<h2>NEWS</h2>
</header>
<section class="wrapper style4 container">
{% assign postsByYearMonth = site.categories.news | group_by_exp:"news", "news.date | date: '%Y'" %}
{% for yearMonth in postsByYearMonth %}
<h3>{{ yearMonth.name }}</h3>
<div class="row news">
{% for news in yearMonth.items %}
<div class="6u">
<a href="{{news.url}}" class="image featured">
<div class="gallery-image">
<img src="{{news.image}}" alt="" />
<div class="gallery-text">
<h3>{{news.title}}</h3>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
{% endfor %}
</section>
</article>