Skip to content

Commit

Permalink
display more entries on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jul 7, 2013
1 parent b19c98f commit b93a89a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.html
Expand Up @@ -53,18 +53,18 @@ <h1>Rcpp Gallery<small> Articles and code examples for the <a href="http://dirk.
<h3>Featured Articles</h3>

<ul class="unstyled">
{% for post in site.tags.featured limit:10 %}
{% for post in site.tags.featured limit:20 %}
{% include post_item.html %}
{% endfor %}
{% if site.tags.featured.size > 10 %}
{% if site.tags.featured.size > 20 %}
<li><a href="tags/featured/">More &raquo;</a></li>
{% endif %}
</ul>

<h3>Recently Published</h3>
<h3>Published Articles</h3>

<ul class="unstyled">
{% for post in site.posts limit:10 %}
{% for post in site.posts limit:75 %}
<li>
<span class="muted">{{ post.date | date: "%b %e, %Y" }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a> <span class="muted">&mdash; {{ post.author }}</span>
</li>
Expand Down

0 comments on commit b93a89a

Please sign in to comment.