-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rebuild configuration (#2068)
- Loading branch information
1 parent
8e02c2b
commit da39564
Showing
14 changed files
with
421 additions
and
420 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of Cecil. | ||
* | ||
* Copyright (c) Arnaud Ligny <arnaud@ligny.fr> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
// Base configuration | ||
return [ | ||
'taxonomies' => [ | ||
'tags' => 'tag', | ||
'categories' => 'category', | ||
], | ||
'pages' => [ | ||
'generators' => [ | ||
10 => 'Cecil\Generator\DefaultPages', | ||
20 => 'Cecil\Generator\VirtualPages', | ||
30 => 'Cecil\Generator\ExternalBody', | ||
40 => 'Cecil\Generator\Section', | ||
50 => 'Cecil\Generator\Taxonomy', | ||
60 => 'Cecil\Generator\Homepage', | ||
70 => 'Cecil\Generator\Pagination', | ||
80 => 'Cecil\Generator\Alias', | ||
90 => 'Cecil\Generator\Redirect', | ||
], | ||
'default' => [ | ||
'index' => [ | ||
'path' => '', | ||
'title' => 'Home', | ||
'published' => true, | ||
], | ||
'404' => [ | ||
'path' => '404', | ||
'title' => 'Page not found', | ||
'layout' => '404', | ||
'uglyurl' => true, | ||
'published' => true, | ||
'exclude' => true, | ||
], | ||
'robots' => [ | ||
'path' => 'robots', | ||
'title' => 'Robots.txt', | ||
'layout' => 'robots', | ||
'output' => 'txt', | ||
'published' => true, | ||
'exclude' => true, | ||
'multilingual' => false, | ||
], | ||
'sitemap' => [ | ||
'path' => 'sitemap', | ||
'title' => 'XML sitemap', | ||
'layout' => 'sitemap', | ||
'output' => 'xml', | ||
'changefreq' => 'monthly', | ||
'priority' => '0.5', | ||
'published' => true, | ||
'exclude' => true, | ||
'multilingual' => false, | ||
], | ||
'xsl/atom' => [ | ||
'path' => 'xsl/atom', | ||
'layout' => 'feed', | ||
'output' => 'xsl', | ||
'uglyurl' => true, | ||
'published' => true, | ||
'exclude' => true, | ||
], | ||
'xsl/rss' => [ | ||
'path' => 'xsl/rss', | ||
'layout' => 'feed', | ||
'output' => 'xsl', | ||
'uglyurl' => true, | ||
'published' => false, | ||
'exclude' => true, | ||
], | ||
], | ||
], | ||
'output' => [ | ||
'formats' => [ | ||
[ // e.g.: blog/post-1/index.html | ||
'name' => 'html', | ||
'mediatype' => 'text/html', | ||
'filename' => 'index', | ||
'extension' => 'html', | ||
], | ||
[ // e.g.: blog/atom.xml | ||
'name' => 'atom', | ||
'mediatype' => 'application/atom+xml', | ||
'filename' => 'atom', | ||
'extension' => 'xml', | ||
'exclude' => ['redirect', 'paginated'], | ||
], | ||
[ // e.g.: blog/rss.xml | ||
'name' => 'rss', | ||
'mediatype' => 'application/rss+xml', | ||
'filename' => 'rss', | ||
'extension' => 'xml', | ||
'exclude' => ['redirect', 'paginated'], | ||
], | ||
[ // e.g.: blog.json | ||
'name' => 'json', | ||
'mediatype' => 'application/json', | ||
'extension' => 'json', | ||
'exclude' => ['redirect'], | ||
], | ||
[ // e.g.: blog.xml | ||
'name' => 'xml', | ||
'mediatype' => 'application/xml', | ||
'extension' => 'xml', | ||
'exclude' => ['redirect'], | ||
], | ||
[ // e.g.: robots.txt | ||
'name' => 'txt', | ||
'mediatype' => 'text/plain', | ||
'extension' => 'txt', | ||
'exclude' => ['redirect'], | ||
], | ||
[ // e.g.: blog/post-1/amp/index.html | ||
'name' => 'amp', | ||
'mediatype' => 'text/html', | ||
'subpath' => 'amp', | ||
'filename' => 'index', | ||
'extension' => 'html', | ||
], | ||
[ // e.g.: sw.js | ||
'name' => 'js', | ||
'mediatype' => 'application/javascript', | ||
'extension' => 'js', | ||
], | ||
[ // e.g.: manifest.webmanifest | ||
'name' => 'webmanifest', | ||
'mediatype' => 'application/manifest+json', | ||
'extension' => 'webmanifest', | ||
], | ||
[ // e.g.: atom.xsl | ||
'name' => 'xsl', | ||
'mediatype' => 'application/xml', | ||
'extension' => 'xsl', | ||
], | ||
[ // e.g.: blog/feed.json | ||
'name' => 'jsonfeed', | ||
'mediatype' => 'application/json', | ||
'filename' => 'feed', | ||
'extension' => 'json', | ||
'exclude' => ['redirect', 'paginated'], | ||
], | ||
[ // e.g.: video/embed.html | ||
'name' => 'iframe', | ||
'mediatype' => 'text/html', | ||
'filename' => 'embed', | ||
'extension' => 'html', | ||
'exclude' => ['redirect', 'paginated'], | ||
], | ||
[ // e.g.: video/embed.json | ||
'name' => 'oembed', | ||
'mediatype' => 'application/json+oembed', | ||
'filename' => 'embed', | ||
'extension' => 'json', | ||
'exclude' => ['redirect', 'paginated'], | ||
], | ||
], | ||
'postprocessors' => [ | ||
'GeneratorMetaTag' => 'Cecil\Renderer\PostProcessor\GeneratorMetaTag', | ||
'HtmlExcerpt' => 'Cecil\Renderer\PostProcessor\HtmlExcerpt', | ||
'MarkdownLink' => 'Cecil\Renderer\PostProcessor\MarkdownLink', | ||
], | ||
], | ||
]; |
Oops, something went wrong.