Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/VVelox/hugo-dusky-neon-potato.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZane C. Bowers-Hadley <vvelox@vvelox.net>2018-09-05 13:11:27 +0300
committerZane C. Bowers-Hadley <vvelox@vvelox.net>2018-09-05 13:11:27 +0300
commitf3c77341752d017d7301161ea2c1da7ea71b5653 (patch)
tree4b8f970e77b9b93f6c479de6d249d24cd3e941b0 /README.md
parent35d87f8b8c44368a439bc852d2d06d29927c77a8 (diff)
setup no_pagination
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
index a46d244..bb2f5b8 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,7 @@ Outrun with the power of a potato. Based on the Potato Dark theme with CSS bits
* Social links (most social networks available)
* Inlined CSS for customizable colors via config.
* Outrun inspired foreground colors on a dark background, by default.
+* Can turn of pagination.
Use short code for Image Zoom.
@@ -41,3 +42,20 @@ $ hugo server -t dusky-neon-potato -w -D
```
## Configuration
+
+### Disable Pagination
+
+So lets say you have a page you don't want pagination displayed, such as "About.org",
+then you can set <code>no_pagination</code> to true in the Front Matter and it won't
+display.
+
+```
+---
+title: "About"
+date: 2018-09-02T22:41:40-05:00
+draft: false
+no_pagination = true
+---
+
+A rutting about page.
+```