blob: d454804d9bf1678c66ee18672657f1ed2db827da (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="gViewMenu">
<? if ($page_type == "album"):?>
<?= $theme->album_menu() ?>
<? elseif ($page_type == "photo") : ?>
<?= $theme->photo_menu() ?>
<? endif ?>
</div>
<?= $theme->sidebar_blocks() ?>
<?= $theme->sidebar_bottom() ?>
|