Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
opensourcedesign.github.io/articles.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
37 lines (36 sloc)
1.15 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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> |