diff options
author | Adam Carpenter <gitlab@53hor.net> | 2019-07-06 09:38:01 -0400 |
---|---|---|
committer | Adam Carpenter <gitlab@53hor.net> | 2019-07-06 09:38:01 -0400 |
commit | 19f48a14bdd89ac30cdfdfb13b17f12418921a21 (patch) | |
tree | 7be0a6008a004008ce0f0207cee77dd92421ba9f /_includes | |
parent | 936e2e4e9b0f1d084bd389ec35b6ed225f123ff9 (diff) | |
download | cobalt-site-19f48a14bdd89ac30cdfdfb13b17f12418921a21.tar.xz cobalt-site-19f48a14bdd89ac30cdfdfb13b17f12418921a21.zip |
Fixed excerpts generation, starting whitespace, updated gopro.
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> |