Getting Started

Installation

Config Options

A reminder that Kirby config options docs can be found at https://getkirby.com/docs/guide/configuration, but here we will explain what is in our theme config.


Autoresize

Choose to resize every image larger than 1920px to that size. You can change it to another size and quality if it suits you.

'medienbaecker.autoresize.maxWidth' => 1920,
'medienbaecker.autoresize.maxHeight' => 1920,
'medienbaecker.autoresize.quality' => 90,

Email

go to site/config/config.php file. Open it with any editor. And Enter your SMTP setting info.

'email' => [
        'transport' => [
            'type' => 'smtp',
            'host' => '***',
            'port' => 587,
            'security' => 'tls',
            'auth' => true,
            'username' => '***',
            'password' => '***',
        ],
],