mirror of
https://github.com/Pathduck/gallery3-themes-modules.git
synced 2026-06-07 22:39:06 -04:00
13 lines
574 B
PHP
Executable File
13 lines
574 B
PHP
Executable File
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<div data-role="header">
|
|
<? if ($theme->item()->parent_id > 0): ?>
|
|
<a class="ui-btn ui-mini ui-icon-carat-l ui-btn-icon-left ui-corner-all ui-nodisc-icon" href="<?= ORM::factory("item", $theme->item()->parent_id)->url() ?>" data-ajax="false"><?= ORM::factory("item", $theme->item()->parent_id)->title ?></a>
|
|
<? endif ?>
|
|
<h1>
|
|
<?= html::purify($item->title) ?>
|
|
</h1>
|
|
</div>
|
|
<div role="main" class="ui-content">
|
|
<img src="<?= $item->resize_url() ?>" style="opacity: 1"/>
|
|
</div>
|