diff options
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/post-card.liquid | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_includes/post-card.liquid b/_includes/post-card.liquid index f21ce7f..2f79ead 100644 --- a/_includes/post-card.liquid +++ b/_includes/post-card.liquid @@ -11,20 +11,20 @@ {{ post.title }} </p> <div class="content"> - {{ post.content | truncatewords: 50 }} + {{ post.excerpt | truncatewords: 50 }} </div> </div> <footer class="card-footer"> <a class="card-footer-item" href="/{{ post.permalink }}" > - Read more... + Continue reading... </a> <a class="card-footer-item" href="/{{ post.permalink }}" target="_blank" > - Open in new tab... + Read in new tab... </a> </footer> </div> |