forked from path-cc/path-cc.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGIL.html
More file actions
24 lines (22 loc) · 725 Bytes
/
GIL.html
File metadata and controls
24 lines (22 loc) · 725 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
---
title: GIL Reporting
layout: sub-page
---
<div class="row mb-3">
{% assign articles = site.gil | sort: "date" | reverse %}
{% for article in articles %}
<div class="col-12 col-md-6 mb-3">
<div class="news news-summary">
<div class="article-content">
<h2 class="article-title">
<a href="{{ article.url | relative_url }}">{{ article.title }}</a>
</h2>
<h2 class="article-title">
<small class="text-muted">{{ article.date | date: "%B %e, %Y" }}</small>
</h2>
<p>{{ article.excerpt | markdownify }}</p>
</div>
</div>
</div>
{% endfor %}
</div>