Created
February 25, 2016 07:05
-
-
Save impactmass/2395483091397c0a95e1 to your computer and use it in GitHub Desktop.
read more link in jekyll blog using liquid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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