Skip to content

Commit

Permalink
Recent posts sidebar now correctly observes titlecase settings
Browse files Browse the repository at this point in the history
  • Loading branch information
imathis committed May 9, 2013
1 parent ac5d253 commit e83dfcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .themes/classic/source/_includes/asides/recent_posts.html
Expand Up @@ -3,7 +3,7 @@ <h1>Recent Posts</h1>
<ul id="recent_posts">
{% for post in site.posts limit: site.recent_posts %}
<li class="post">
<a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a>
<a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a>
</li>
{% endfor %}
</ul>
Expand Down

0 comments on commit e83dfcc

Please sign in to comment.