summaryrefslogtreecommitdiff
path: root/themes/wind_npk/views/photo.html.php
diff options
context:
space:
mode:
authorNathan Kinkade <nkinkade@nkinka.de>2010-08-20 01:28:16 +0000
committerNathan Kinkade <nkinkade@nkinka.de>2010-08-20 01:28:16 +0000
commit90b137802a30b8750a981e50d929d2792feb8f80 (patch)
tree79f92e0aff859dc3eee55ba843021330df4ce08d /themes/wind_npk/views/photo.html.php
parent39d30154332c2daff124c65b8b784e8c6e1058c1 (diff)
Get rid of wind_npk theme, since now I've got regular Wind theme under version control I can just edit it directly without worry.
Diffstat (limited to 'themes/wind_npk/views/photo.html.php')
-rw-r--r--themes/wind_npk/views/photo.html.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/themes/wind_npk/views/photo.html.php b/themes/wind_npk/views/photo.html.php
deleted file mode 100644
index c17d6b90..00000000
--- a/themes/wind_npk/views/photo.html.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php defined("SYSPATH") or die("No direct script access.") ?>
-
-<? if (access::can("view_full", $theme->item())): ?>
-<!-- Use javascript to show the full size as an overlay on the current page -->
-<script type="text/javascript">
- $(document).ready(function() {
- $(".g-fullsize-link").click(function() {
- $.gallery_show_full_size(<?= html::js_string($theme->item()->file_url()) ?>, "<?= $theme->item()->width ?>", "<?= $theme->item()->height ?>");
- return false;
- });
- });
-</script>
-<? endif ?>
-
-<div id="g-item">
- <?= $theme->photo_top() ?>
-
- <?= $theme->paginator() ?>
-
- <div id="g-photo">
- <?= $theme->resize_top($item) ?>
- <? if (access::can("view_full", $item)): ?>
- <a href="<?= $item->file_url() ?>" class="g-fullsize-link" title="<?= t("View full size")->for_html_attr() ?>">
- <? endif ?>
- <?= $item->resize_img(array("id" => "g-item-id-{$item->id}", "class" => "g-resize")) ?>
- <? if (access::can("view_full", $item)): ?>
- </a>
- <? endif ?>
- <?= $theme->resize_bottom($item) ?>
- </div>
-
- <div id="g-info">
- <!-- <h1><?= html::purify($item->title) ?></h1> -->
- <div><?= nl2br(html::purify($item->description)) ?></div>
- </div>
-
- <?= $theme->photo_bottom() ?>
-</div>