When I am using the hexo as my blog system, I found one big problem that really frustrate me. In the home page of my blog website, articles are displayed at full content and that makes the page size so big and the loading time extraordinary long.
I found below 3 ways (in priority) to fix this issue.
- Use the
description
property to let the render engine know your purpose.
- Put the
<!-- more -->
tag inside the article in the right location.
- Use the
excerpt
property like method 2.
BTW, you can modify the template like post, draft and archive to adapt these approaches.