Skip to content

Instantly share code, notes, and snippets.

@stiles
Created September 18, 2012 19:50
Show Gist options
  • Save stiles/3745411 to your computer and use it in GitHub Desktop.
Save stiles/3745411 to your computer and use it in GitHub Desktop.
Jekyll
---
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