Skip to content

Releases: skimpy/cms

Config Access & Configurable Indexes

19 Jun 01:51

Choose a tag to compare

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

24 Sep 17:36

Choose a tag to compare

v0.2.0

php8

Link to docs in welcome

23 Jan 03:56

Choose a tag to compare

v0.1.2

add some built in docs

Don't use https for skimpycms.com links

22 Jan 23:30
46c3d9f

Choose a tag to compare

v0.1.11

Don't use https link for now

meta description is only on home and entry template by default

22 Jan 23:01

Choose a tag to compare

Initial Release

20 Jan 01:07

Choose a tag to compare

v0.1.0

change welcome content