1

fix pagination

This commit is contained in:
Alex Yatskov 2017-12-29 11:49:46 -08:00
parent 4aad40e5af
commit 8b9b41d26c
2 changed files with 2 additions and 13 deletions

View File

@ -39,7 +39,6 @@ import (
"github.com/FooSoft/goldsmith-plugins/tags" "github.com/FooSoft/goldsmith-plugins/tags"
"github.com/FooSoft/goldsmith-plugins/thumbnail" "github.com/FooSoft/goldsmith-plugins/thumbnail"
"github.com/PuerkitoBio/goquery" "github.com/PuerkitoBio/goquery"
"github.com/russross/blackfriday"
) )
func fixup(doc *goquery.Document) error { func fixup(doc *goquery.Document) error {
@ -69,20 +68,9 @@ func (b *builder) Build(srcDir, dstDir string) {
"Layout": "index", "Layout": "index",
} }
markdownFlags := blackfriday.EXTENSION_TABLES |
blackfriday.EXTENSION_FENCED_CODE |
blackfriday.EXTENSION_AUTOLINK |
blackfriday.EXTENSION_STRIKETHROUGH |
blackfriday.EXTENSION_SPACE_HEADERS |
blackfriday.EXTENSION_HEADER_IDS |
blackfriday.EXTENSION_BACKSLASH_LINE_BREAK |
blackfriday.EXTENSION_DEFINITION_LISTS |
blackfriday.EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK |
blackfriday.EXTENSION_AUTO_HEADER_IDS
errs := goldsmith.Begin(srcDir). errs := goldsmith.Begin(srcDir).
Chain(frontmatter.New()). Chain(frontmatter.New()).
Chain(markdown.New().MarkdownFlags(markdownFlags)). Chain(markdown.New()).
Chain(collection.New()). Chain(collection.New()).
Chain(paginate.New("Groups.Blog").ItemsPerPage(3)). Chain(paginate.New("Groups.Blog").ItemsPerPage(3)).
Chain(index.New(indexMeta)). Chain(index.New(indexMeta)).

View File

@ -3,5 +3,6 @@ Area = "blog"
CrumbName = "blog" CrumbName = "blog"
Layout = "collection" Layout = "collection"
Title = "Blog" Title = "Blog"
Paginate = true
+++ +++