1er commit

Theme zenphoto
This commit is contained in:
2016-10-20 20:07:26 +02:00
commit 5cbd6357ed
81 changed files with 8984 additions and 0 deletions

12
index.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
if(function_exists("checkForPage")) { // check if Zenpage is enabled or not
if (checkForPage(getOption("zpgal_homepage"))) { // switch to a news page
$ishomepage = true;
include ('pages.php');
} else {
include ('gallery.php');
}
} else {
include ('gallery.php');
}
?>