diff options
author | uvok cheetah | 2019-05-19 11:06:40 +0200 |
---|---|---|
committer | uvok cheetah | 2019-05-19 11:06:40 +0200 |
commit | f9b772ca40569951ce3fa9103fd888e317539544 (patch) | |
tree | 29bafd56908da2fbfa9a2b3775feabd202938170 /index.html | |
parent | f87e27b0a4ca7892df136b148843c5d7778d8ebd (diff) |
Only show excerpt on front page
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -18,7 +18,10 @@ layout: default <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> </h2> {% if first_displayed != true %} - <div>{{ post.content }}</div> + <article> + {{ post.excerpt }} + <p>...</p> + </article> {% assign first_displayed = true %} {% endif %} |