Enhance CSS: magnetic menu hover text, home grid captions, responsive improvements
This commit is contained in:
33
site/config/config.dev.php
Normal file
33
site/config/config.dev.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* The config file is optional. It accepts a return array with config options
|
||||
* Note: Never include more than one return statement, all options go within this single return array
|
||||
* In this example, we set debugging to true, so that errors are displayed onscreen.
|
||||
* This setting must be set to false in production.
|
||||
* All config options: https://getkirby.com/docs/reference/system/options
|
||||
*/
|
||||
return [
|
||||
'debug' => true,
|
||||
'yaml.handler' => 'symfony', // already makes use of the more modern Symfony YAML parser: https://getkirby.com/docs/reference/system/options/yaml (will become the default in a future Kirby version)
|
||||
'url' => 'http://localhost:8080',
|
||||
'panel' => [
|
||||
'install' => true,
|
||||
'url' => 'http://localhost:8080',
|
||||
],
|
||||
'languages' => [
|
||||
[
|
||||
'code' => 'de',
|
||||
'default' => true,
|
||||
'name' => 'Deutsch',
|
||||
'locale' => 'de_DE',
|
||||
'url' => '/',
|
||||
],
|
||||
[
|
||||
'code' => 'en',
|
||||
'name' => 'English',
|
||||
'locale' => 'en_US',
|
||||
'url' => '/en',
|
||||
],
|
||||
],
|
||||
];
|
||||
@@ -13,7 +13,7 @@ return [
|
||||
'url' => 'https://licht.interkollektiv.es',
|
||||
'panel' => [
|
||||
'install' => true,
|
||||
'url' => 'https://licht.interkollektiv.es/panel',
|
||||
'url' => 'https://licht.interkollektiv.es',
|
||||
],
|
||||
'languages' => [
|
||||
[
|
||||
|
||||
Reference in New Issue
Block a user