aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2013-05-09 16:36:08 -0500
committerBrandon Mathis <brandon@imathis.com>2013-05-09 16:36:26 -0500
commite83dfccc4f6f2db6283918af1743e63278807089 (patch)
tree2efe6e1a27f98cddbea9fcad993718992bdf9cd8
parentac5d2538ece38c62e073d2271eac35db9fe59237 (diff)
downloadmy_new_personal_website-e83dfccc4f6f2db6283918af1743e63278807089.tar.xz
my_new_personal_website-e83dfccc4f6f2db6283918af1743e63278807089.zip
Recent posts sidebar now correctly observes titlecase settings
Diffstat (limited to '')
-rw-r--r--.themes/classic/source/_includes/asides/recent_posts.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/.themes/classic/source/_includes/asides/recent_posts.html b/.themes/classic/source/_includes/asides/recent_posts.html
index cc628145..4b108474 100644
--- a/.themes/classic/source/_includes/asides/recent_posts.html
+++ b/.themes/classic/source/_includes/asides/recent_posts.html
@@ -3,7 +3,7 @@
<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>