Skip to content

Instantly share code, notes, and snippets.

@Joozo
Forked from mikeygee/01-before.html
Created November 27, 2015 01:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Joozo/6ba6008eb14475dc69af to your computer and use it in GitHub Desktop.
Save Joozo/6ba6008eb14475dc69af to your computer and use it in GitHub Desktop.
truncate blog posts in jekyll
<!-- using the truncate filter -->
{% for post in site.posts limit:10 %}
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<span class="post-date">{{ post.date | date: "%B %d, %Y" }}</span>
{% if post.content.size > 2000 %}
{{ post.content | truncatewords: 300 }} <!-- bad! content gives you rendered html and you will truncate in the middle of a node -->
<a href="{{ post.url }}">read more</a>
{% else %}
{{ post.content }}
{% endif %}
<hr>
{% endfor %}
<!-- using the split filter -->
{% for post in site.posts limit:10 %}
<div class="post-preview">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<span class="post-date">{{ post.date | date: "%B %d, %Y" }}</span>
{{ post.content | split:'<!--break-->' | first }}
{% if post.content contains '<!--break-->' %}
<a href="{{ post.url }}">read more</a>
{% endif %}
</div>
<hr>
{% endfor %}
<!-- In your posts file, put your marker wherever you want to cut off the post for the main blog page -->
---
layout: post
title: truncate example
---
Paragraph 1
Paragraph 2
<!--break-->
Paragraph 3
Paragraph 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment