rename the page template modal.php to none.php because it can be used for more than modals

This commit is contained in:
rabuzarus 2016-05-15 13:41:37 +02:00
parent 8384ba833a
commit 64a2f2022b
9 changed files with 30 additions and 30 deletions

View file

@ -1,11 +0,0 @@
<?php
/**
* @file view/theme/frio/php/modes/modal.php
* @brief The site template for Modals
*
* This themplate is used for bs modals. So outputs
* only the pure content
*/
if(x($page,'content')) echo $page['content'];

11
php/modes/none.php Normal file
View file

@ -0,0 +1,11 @@
<?php
/**
* @file view/theme/frio/php/modes/none.php
* @brief The site template for pure content (e.g. (modals)
*
* This themplate is used e.g for bs modals. So outputs
* only the pure content
*/
if(x($page,'content')) echo $page['content'];