Skip to content

Instantly share code, notes, and snippets.

@impactmass
Created February 25, 2016 07:05
Show Gist options
  • Save impactmass/2395483091397c0a95e1 to your computer and use it in GitHub Desktop.
Save impactmass/2395483091397c0a95e1 to your computer and use it in GitHub Desktop.
read more link in jekyll blog using liquid
{% capture content_words %}
{{ post.content | number_of_words }}
{% endcapture %}
{% capture excerpt_words %}
{{ post.content | truncatewords: 250 | number_of_words }}
{% endcapture %}
{% if content_words != excerpt_words %}
<p class="right"><a href="{{site.baseurl}}{{ post.url }}">Read more</a></p>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment