Skip to content

截断与分页

郑超 edited this page Jan 5, 2017 · 2 revisions

文章截断

在文章内容中添加 <!-- more -->截断,即可在首页显示时只显示其之上的内容。

并且会在 <!-- more --> 添加一个 Read more 的链接。

自定义文章简述

可在文章头信息中添加 description 字段,并填写自定义的文章简述。

就可以在首页显示文章简述而不显示文章内容。

---
title: 文章标题
date: 2017-01-05 10:25:33
description: 文章简述。。。
---

添加分页

站点根目录的配置文件_config.yml里添加配置:

# Pagination
## Set per_page to 0 to disable pagination
pagination_dir: page
index_generator:
  per_page: 8
archive_generator:
  per_page: 0
  yearly: true
  monthly: true

per_page为每页显示文章数,为0表示不分页。