Added themes directory, improved javascript load and minification.

This commit is contained in:
Brandon Mathis
2011-06-07 16:12:46 -04:00
parent 6cba214513
commit aa23061624
62 changed files with 3729 additions and 1 deletions

View File

@ -0,0 +1,12 @@
{% if page.single and site.recent_posts %}
<section>
<h1>Recent Posts</h1>
<ul id="recent_posts">
{% for post in site.posts limit: site.recent_posts %}
<li class="post">
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</section>
{% endif %}