mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-22 09:29:53 -04:00
1) drop unnecessary semicolon 2) start with <?php for extra security in the case that the server itself doesn't have short_tags enabled (the app won't work, but we need to make sure that we're still secure)
20 lines
560 B
PHP
20 lines
560 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<?= $theme->site_status() ?>
|
|
<?= $theme->header_top() ?>
|
|
<img id="gLogo" alt="<?= _("Logo") ?>" src="<?= $theme->url("images/logo.png") ?>" />
|
|
|
|
<div id="gSiteMenu">
|
|
<?= $theme->site_menu() ?>
|
|
</div>
|
|
|
|
<?= $theme->header_bottom() ?>
|
|
|
|
<? if ($page_type != "tag"): ?>
|
|
<ul id="gBreadcrumbs">
|
|
<? foreach ($parents as $parent): ?>
|
|
<li><a href="<?= url::site("albums/{$parent->id}") ?>"><?= $parent->title ?></a></li>
|
|
<? endforeach ?>
|
|
<li class="active"><?= $item->title ?></li>
|
|
</ul>
|
|
<? endif ?>
|