forked from opensourcedesign/opensourcedesign.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
articles.html
37 lines (36 loc) · 1.15 KB
/
articles.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
---
layout: default
title: Articles
permalink: /articles/
---
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Articles</h1>
<ul class="post-list row">
{% for post in site.posts %}
{% if post.layout == "post" %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<p>
We love to have new writers so if you have an idea for an
article or something you've already written elsewhere, but would
be a good addition here, please let us know.
</p>
<p>
Subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a>
</p>
</div>
</div>
</div>