demo/config/larabb.php
2023-03-23 18:50:47 +01:00

23 lines
612 B
PHP

<?php
return [
/**
* Switch between a wide and narrow layout
*
* Fluid = The website will stretch across the full width of the screen
* None = The website will stretch to a certain point
*
* Allowed values: fluid|none
*/
'layout' => 'fluid',
/**
* Switch between "classic" and "modern" variants of displaying postings in a thread
*
* Classic = Authors information are left besides the post content
* Modern = Authors information are above the post content
*
* Allowed values: classic|modern
*/
'thread-style' => 'classic'
];