updated to latest octopress source

This commit is contained in:
Brandon Mathis 2011-08-20 16:03:37 -04:00
parent 9a81a6ecf9
commit 1722c503f7

View File

@ -12,9 +12,12 @@
{% endunless %} {% endunless %}
{% if index %} {% if index %}
<div class="entry-content">{{ content | excerpt }}</div> <div class="entry-content">{{ content | excerpt }}</div>
{% capture excerpted %}{{ content | has_excerpt }}{% endcapture %}
{% if excerpted == 'true' %}
<footer> <footer>
<a rel="full-article" href="{{ root_url }}{{ post.url }}">Read on &rarr;</a> <a rel="full-article" href="{{ root_url }}{{ post.url }}">Read on &rarr;</a>
</footer> </footer>
{% endif %}
{% else %} {% else %}
<div class="entry-content">{{ content }}</div> <div class="entry-content">{{ content }}</div>
{% endif %} {% endif %}