2016-05-15 13:41:37 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file view/theme/frio/php/modes/none.php
|
2020-01-19 07:05:23 +01:00
|
|
|
* The site template for pure content (e.g. (modals)
|
2016-05-15 13:41:37 +02:00
|
|
|
*
|
|
|
|
* This themplate is used e.g for bs modals. So outputs
|
|
|
|
* only the pure content
|
|
|
|
*/
|
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
if(!empty($page['content'])) echo $page['content'];
|
2016-05-15 13:41:37 +02:00
|
|
|
|