Releases: skimpy/cms
Releases · skimpy/cms
Config Access & Configurable Indexes
Config Access
You can now override all config files from the engine repository https://github.com/skimpy/engine/tree/master/config
- Just add the config file name to your own config folder. It will array merge recursive.
You can customize what uris receive entries and adjust certain query params. You can also "pin" certain posts. This is useful to pin particular posts to your home page.
config/skimpy.php
# The URIs that have all entries available in an "entries" view variable
'entries' => [
'/' => [
'template' => 'home',
'limit' => 3,
'seotitle' => 'Home',
'pinned' => [
'should-we-follow-srp-in-controllers',
'why-im-using-skimpy-cms-for-my-blog',
'how-should-we-structure-our-laravel-apps',
]
],
'articles' => [
'template' => 'articles',
'limit' => null,
'seotitle' => 'Articles',
]
]
Here is the engine code in the router that provides the new functionality
https://github.com/skimpy/engine/blob/master/src/Lumen/routes.php#L6-L35
PHP8 Support
v0.2.0 php8
Link to docs in welcome
v0.1.2 add some built in docs
Don't use https for skimpycms.com links
v0.1.11 Don't use https link for now
meta description is only on home and entry template by default
v0.1.1 update link to docs
Initial Release
v0.1.0 change welcome content