summaryrefslogtreecommitdiff
path: root/_includes/views/pagination-item.html
AgeCommit message (Collapse)Author
2023-09-22feat: custom excerpt image supportJeffrey Tse
Add new front meta named `excerpt_image` to custom excerpt image, which priority is higher than banner image.
2023-08-26feat: rich excerpt with image support (#125)Jeffrey Tse
2023-08-24feat: show author for posts that specify one (#122)Tom Hebb
* feat: show author for posts that specify one Posts by default inherit the site's author, but it's possible to override that per post, which affects--e.g.--the RSS metadata. For posts that do so, we don't currently show that anywhere in the theme. Add a new piece of metadata to posts, along with the date and reading time, that displays the author only when it's not inherited from the site. * Update pagination-item.html --------- Co-authored-by: JT <jeffreytse.mail@gmail.com>
2023-08-23feat: support to pin articles (#50)Jeffrey Tse
This feature can allow you to top articles via post front meta property `top`, the value is a number, the smaller the number is, the higher priority the article has. Example: ``` title: My Article top: <number> ```