-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblog_index.html
49 lines (33 loc) · 1.21 KB
/
blog_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: page
title: Blog
permalink: /blog/
---
<div class="container posts-index">
<h1>Blog</h1>
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-3">
<div class="small-title">Latest in english</div>
{% assign english-posts = site.posts | where: "lang","en" %}
{% for post in english-posts %}
<article class="article">
<h2 class="article-headline"><a class="article-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
<time class="article-time">{{post.date | date: "%b %-d, %Y"}}</time>
</article>
{% endfor %}
</div>
<div class="pure-u-1 pure-u-md-1-3">
<div class="small-title">Latest in spanish</div>
{% assign spanish-posts = site.posts | where: "lang","es" %}
{% for post in spanish-posts %}
<article class="article">
<h2 class="article-headline"><a class="article-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
<time class="article-time">{{post.date | date: "%b %-d, %Y"}}</time>
</article>
{% endfor %}
</div>
<div class="pure-u-1 pure-u-md-1-3">
{% include blog_nav.html %}
</div>
</div>
</div>