Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: None  |  size: 0.50 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!-- This snippet checks for an excerpt variable that I assign to true on my index pages, but not on the post pages, then checks to see if the post has an excerpt to see if it should render the excerpt of the post or the whole thing -->
  2.  
  3. <div class="entry">
  4.   {% if excerpt and post.excerpt %}
  5.     {{ post.excerpt }}
  6.     <p> <a href="{{ post.url }}/#more" class="more-link"><span class="readmore">Read the rest of this entry ยป</span></a></p>
  7.   {% else %}
  8.     {{ post.content | mark_excerpt }}
  9.   {% endif %}
  10. </div>