Set detault for Paginate to 10
authorbep <bjorn.erik.pedersen@gmail.com>
Mon, 26 Jan 2015 14:26:19 +0000 (15:26 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 26 Jan 2015 14:26:19 +0000 (15:26 +0100)
10 is a better default than 0, since no paginator pages will be created unles referenced by a `.Paginator`.

See #750

commands/hugo.go
docs/content/extras/pagination.md
hugolib/site.go

index d2b4ed52a6020321ee33160be9c4dc566295e70a..cce37a5f9cab56ed0f72f017fd5f88816c18d1f6 100644 (file)
@@ -136,7 +136,7 @@ func InitializeConfig() {
        viper.SetDefault("FootnoteAnchorPrefix", "")
        viper.SetDefault("FootnoteReturnLinkContents", "")
        viper.SetDefault("NewContentEditor", "")
-       viper.SetDefault("Paginate", 0)
+       viper.SetDefault("Paginate", 10)
        viper.SetDefault("PaginatePath", "page")
        viper.SetDefault("Blackfriday", new(helpers.Blackfriday))
 
index 5d27765a1b4e1bf6b20a74df10de03b521137fdf..e9c28c9829bbce534c6c4f8786fd28e536b17a30 100644 (file)
@@ -17,10 +17,12 @@ Hugo supports pagination for the home page, sections and taxonomies.
 
 Pagination can be configured in the site configuration (e.g. `config.toml`):
 
-* `Paginate` (default `0`) 
+* `Paginate` (default `10`) 
 * `PaginatePath` (default `page`)
 
-Setting `Paginate` to a positive value will split the list pages for the home page, sections and taxonomies into chunks of that size.[^lazy] `PaginatePath` is used to adapt the `Url` to the pages in the paginator (the default setting will produce urls on the form `/page/1/`. 
+Setting `Paginate` to a positive value will split the list pages for the home page, sections and taxonomies into chunks of that size. But note that the generation of the pagination pages for sections, taxonomies and home page is *lazy* -- the pages will not be created if not referenced by a `.Paginator` (see below).
+
+ `PaginatePath` is used to adapt the `Url` to the pages in the paginator (the default setting will produce urls on the form `/page/1/`. 
 
 ## List the pages
 
@@ -90,5 +92,4 @@ The pages are built on the following form (`BLANK` means no value):
 ....
 ```
 
-[^lazy]: The generation of the pagination pages for sections, taxonomies and home page is *lazy* -- they will not be created if not referenced by a `.Paginator`.
 
index 1877dbf11839be8a0e89f48351bfa715fae5d416..80107344c2f65cb04cb31534077bd9cc587dd8d6 100644 (file)
@@ -1293,9 +1293,7 @@ func (s *Site) Stats() {
        jww.FEEDBACK.Println(s.draftStats())
        jww.FEEDBACK.Println(s.futureStats())
        jww.FEEDBACK.Printf("%d pages created \n", len(s.Pages))
-       if viper.GetInt("paginate") > 0 {
-               jww.FEEDBACK.Printf("%d paginator pages created \n", s.Info.paginationPageCount)
-       }
+       jww.FEEDBACK.Printf("%d paginator pages created \n", s.Info.paginationPageCount)
        taxonomies := viper.GetStringMapString("Taxonomies")
 
        for _, pl := range taxonomies {