blob: 0091afdefc5585f66269c41c21695f361c999515 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<?= $theme->footer() ?>
<? if ($footer_text = module::get_var("core", "footer_text")): ?>
<?= $footer_text ?>
<? else: ?>
<ul id="gCredits">
<li class="first"> Powered by <a href="http://gallery.menalto.com">Gallery3</a> </li>
<?= $theme->credits() ?>
<li> <a href="#">About this Gallery</a> </li>
</ul>
<? endif ?>
|