Created
September 18, 2012 19:50
-
-
Save stiles/3745411 to your computer and use it in GitHub Desktop.
Jekyll
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: NPR News Apps Blog | |
--- | |
{% for post in site.posts limit: 4 %} | |
<article> | |
<header> | |
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2> | |
</header> | |
<section class="entry">{{ post.description }} <a href="{{ post.url }}">Read More</a> | |
</section> | |
<div class="post-meta"> | |
<ul> | |
<li>{{ post.date | date: "%B %d, %Y" }}</li> | |
<li>By <a href="#">{{ post.author }}</a></li> | |
<!-- <li>Filed under: {% for category in post.categories %}<a href="{{ post.categories }}">{{ category | capitalize }}</a> {% endfor %}</li>--> | |
<li><a href="{{ post.url }}#disqus_thread"></a></li> | |
</ul> | |
</div> | |
</article> | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment