23 lines
612 B
PHP
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'
|
|
];
|