Only show post title on Cactus homepage

I wanted to use the Cactus theme because I wanted a list of posts instead of the full post, but the Cactus theme always shows my full post and I’m not sure how to get rid of it. Any one know how? Thanks.

You can see the code for the post list here.

You’ll want to edit that file with a custom theme override (the file is layouts/partials/post-list.html).

The key is where it says {{ .Content }} – that will render your post’s content. Without content, nothing but a title will display (if it exists). I’m assuming you do want content for micro posts, so I would wrap the second part that shows content in {{ else }} so that content is only shown for posts without a .Title, if I understand your request.

2 Likes