My personal blog hauleth.dev
blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add missing "Read more" link

+7
+7
templates/macros/lists.html
··· 18 18 {{ page.summary | safe }} 19 19 {% endif -%} 20 20 </div> 21 + {% if page.description or page.summary -%} 22 + <div> 23 + <a class="read-more button" href="{{ page.permalink }}">{{ config.extra.read_more }} →</a> 24 + </div> 25 + {% endif -%} 21 26 </div> 22 27 {# End of pagination for-loop #} 23 28 {%- endfor -%} 29 + {#- I don't put pagination here like Terminal does. I don't like how 30 + the buttons move with the size of post entries in the content div. -#} 24 31 </section> 25 32 {% endmacro list_pages %}