-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharticles.html
More file actions
34 lines (30 loc) · 835 Bytes
/
articles.html
File metadata and controls
34 lines (30 loc) · 835 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
---
title: Articles • Igor Halfeld
permalink: "/articles/"
layout: page
---
<div class="article-alert-warning">
<p>
<i>
* The articles are being migrated to this blog little by little.
</i>
</p>
</div>
<article class="articles">
{% for article in site.posts %}
<a href="{{ article.url }}" class="article">
<div class="article__box">
<h1 class="article__box--title">{{ article.title }}</h1>
<h2 class="article__box--desc">{{ article.desc }}</h2>
<div class="article__box--content">
{{ article.content | truncate: 100 | markdownify }}
</div>
<span class="article__box--date">
{{ article.date | date: "%d %b %Y" | upcase }}
</span>
<br />
<span class="article__box--lang">{{ article.lang }}</span>
</div>
</a>
{% endfor %}
</article>