diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-28 09:46:29 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-28 09:46:29 +0000 |
commit | 4d71975f37fe00efb19bebc5efd23f056165ba56 (patch) | |
tree | ef80ad330cf730ad196a266a545d4bc44cc490fc /themes | |
parent | 6fbd79928c36f33064103b410cdaa69111400046 (diff) |
Add credits theme callback, point the powered-by link at GMC
Diffstat (limited to 'themes')
-rw-r--r-- | themes/default/css/screen.css | 16 | ||||
-rw-r--r-- | themes/default/views/footer.html.php | 6 |
2 files changed, 21 insertions, 1 deletions
diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css index cd8cb288..ea593dfe 100644 --- a/themes/default/css/screen.css +++ b/themes/default/css/screen.css @@ -290,6 +290,22 @@ table.gMetadata td.toggle { .gInfo { } +/* Credits ~~~~~~~~~~~~~~~~~~~~~~~ */ + +#gCredits li { + display: inline; +} + +#gCredits li:before { + padding: 0px 2px 0px 2px; + content: "|" +} + +#gCredits li.first:before { + content: "" +} + + /** ******************************************************************* * 6) Navigation and menus ******************************************************************/ diff --git a/themes/default/views/footer.html.php b/themes/default/views/footer.html.php index 6e0ef428..7f011735 100644 --- a/themes/default/views/footer.html.php +++ b/themes/default/views/footer.html.php @@ -1,2 +1,6 @@ <? defined("SYSPATH") or die("No direct script access."); ?> -Powered by <a href="#">Gallery3</a> | <a href="#">About this Gallery</a> +<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> |