mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 06:44:40 +01:00
11 lines
527 B
Go
11 lines
527 B
Go
package constants
|
|
|
|
// DefaultPermalinkPattern is the default permalink pattern for pages that aren't in a collection
|
|
const DefaultPermalinkPattern = "/:path:output_ext"
|
|
|
|
// DefaultCollectionPermalinkPattern is the default permalink pattern for pages in the posts collection
|
|
const DefaultCollectionPermalinkPattern = "/:collection/:path:output_ext"
|
|
|
|
// DefaultPostsCollectionPermalinkPattern is the default collection permalink pattern
|
|
const DefaultPostsCollectionPermalinkPattern = "/:categories/:year/:month/:day/:title.html"
|