From 75a329ec022ef21019afb17aecf776a10083e0cb Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sun, 22 Jul 2007 05:49:09 +0000 Subject: issue61, theme support git-svn-id: file:///var/lib/svn/phpfspot/trunk@237 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- themes/default/templates/calendar.tpl | 28 ++++++++ themes/default/templates/credits.tpl | 27 ++++++++ themes/default/templates/export.tpl | 20 ++++++ themes/default/templates/footer.tpl | 1 + themes/default/templates/header.tpl | 11 +++ themes/default/templates/index.tpl | 52 ++++++++++++++ themes/default/templates/photo_index.tpl | 106 ++++++++++++++++++++++++++++ themes/default/templates/search.tpl | 50 ++++++++++++++ themes/default/templates/single_photo.tpl | 110 ++++++++++++++++++++++++++++++ themes/default/templates/slideshow.tpl | 9 +++ themes/default/templates/tags.tpl | 36 ++++++++++ themes/default/templates/welcome.tpl | 29 ++++++++ 12 files changed, 479 insertions(+) create mode 100644 themes/default/templates/calendar.tpl create mode 100644 themes/default/templates/credits.tpl create mode 100644 themes/default/templates/export.tpl create mode 100644 themes/default/templates/footer.tpl create mode 100644 themes/default/templates/header.tpl create mode 100644 themes/default/templates/index.tpl create mode 100644 themes/default/templates/photo_index.tpl create mode 100644 themes/default/templates/search.tpl create mode 100644 themes/default/templates/single_photo.tpl create mode 100644 themes/default/templates/slideshow.tpl create mode 100644 themes/default/templates/tags.tpl create mode 100644 themes/default/templates/welcome.tpl (limited to 'themes/default/templates') diff --git a/themes/default/templates/calendar.tpl b/themes/default/templates/calendar.tpl new file mode 100644 index 0000000..1f52732 --- /dev/null +++ b/themes/default/templates/calendar.tpl @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + {section name="row" loop=$rows step=1} + {section name="col" loop=8 step=1} + {if $matrix[row][col] } + {$matrix[row][col]} + {/if} + {/section} + {/section} + +
<< + {$current_month} + >>
MTWTFSS
+ diff --git a/themes/default/templates/credits.tpl b/themes/default/templates/credits.tpl new file mode 100644 index 0000000..44c4800 --- /dev/null +++ b/themes/default/templates/credits.tpl @@ -0,0 +1,27 @@ + + + + + + + + +
+ {$product} {$version}
+
+
+ + + + +
+ by Andreas Unterkircher
+ {mailto address="unki@netshadow.at"} +
+ HTML_AJAX +
+ PHP tag-cloud code by Jenny Ferenc. +
+
+
+ diff --git a/themes/default/templates/export.tpl b/themes/default/templates/export.tpl new file mode 100644 index 0000000..a3e5641 --- /dev/null +++ b/themes/default/templates/export.tpl @@ -0,0 +1,20 @@ +{include file="header.tpl"} + +
+ + + + +
+
+ + +
+
+
+
+ +{include file="footer.tpl"} diff --git a/themes/default/templates/footer.tpl b/themes/default/templates/footer.tpl new file mode 100644 index 0000000..5f85cab --- /dev/null +++ b/themes/default/templates/footer.tpl @@ -0,0 +1 @@ + diff --git a/themes/default/templates/header.tpl b/themes/default/templates/header.tpl new file mode 100644 index 0000000..5d66f2d --- /dev/null +++ b/themes/default/templates/header.tpl @@ -0,0 +1,11 @@ + + + + + {$page_title} + + + + + + diff --git a/themes/default/templates/index.tpl b/themes/default/templates/index.tpl new file mode 100644 index 0000000..f42a124 --- /dev/null +++ b/themes/default/templates/index.tpl @@ -0,0 +1,52 @@ +{include file="header.tpl"} + +
+ + + + + + + + + + + +
+ + + + + + + +
+ {include file="search.tpl"} +
+
+ {include file="tags.tpl"} +
+
+
+
+ {include file="welcome.tpl"} +
+
+
+
+ Licensed under GPLv3, phpfspot +
+ +{include file="footer.tpl"} diff --git a/themes/default/templates/photo_index.tpl b/themes/default/templates/photo_index.tpl new file mode 100644 index 0000000..08c8999 --- /dev/null +++ b/themes/default/templates/photo_index.tpl @@ -0,0 +1,106 @@ + + + + + + + + + + + + + +
+ + + + + +
+ Photo Index + {if $searchfor } + {if $count == 1} + {$count} image is the result for your search about "{$searchfor}". + {else} + {$count} images are the result for your search about "{$searchfor}". + {/if} + {elseif $tag_result} + {if $count == 1} + {$count} image has been found for the selected tags. + {else} + {$count} images have been found for the selected tags. + {/if} + {else} + {if $count == 1} + {$count} image has been found. + {else} + {$count} images have been found. + {/if} + {/if} + {if $from_date && $to_date } + Results are limited to a date within {$from_date} to {$to_date}. + {/if} + + {if $slideshow_link } + + {/if} + {if $extern_link } + + {/if} + +
+
+
+ + {section name="row" loop=$rows step=1} + + {section name="col" loop=$columns step=1} + {if $images[row][col] } + + {/if} + {/section} + + {/section} +
+ + thumb_{$images[row][col]} +
+ {$img_name[row][col]} +
+ + {else} +
 
+
+ { if $previous_url == "" } + { if $count != 0 } + first page reached + { /if } + { else } + + previous photo + + { /if } + + { if $page_selector == "" } +   + { else } + {$page_selector} + { /if} + + { if $next_url == "" } + { if $count != 0 } + last page reached + { /if } + { else } + + next photo + + { /if} +
+ + diff --git a/themes/default/templates/search.tpl b/themes/default/templates/search.tpl new file mode 100644 index 0000000..1498e70 --- /dev/null +++ b/themes/default/templates/search.tpl @@ -0,0 +1,50 @@ + + + + + + + +
+ loupeSearch: +
+ + + + + + + + + + + + + + + + + + + + + + + + +
Tag: + + + +
Date:consider date-search +
 {$from_date}
  + {$to_date} + + +
+ Sort-Order: + + {$sort_field} +
+
+
diff --git a/themes/default/templates/single_photo.tpl b/themes/default/templates/single_photo.tpl new file mode 100644 index 0000000..bb8c917 --- /dev/null +++ b/themes/default/templates/single_photo.tpl @@ -0,0 +1,110 @@ + + + + + + + + + + +
+ Photo {$image_name}
+ {if $photo_count > 0} + {$photo_number} of {$photo_count} + {if $photo_count == 1} + Photo + {else} + Photos + {/if} + {if $description} +  {$description}
+ {/if} + {/if} +
+ + {if $extern_link } + + {/if} + + original resolution + +
+
+ + + + + + + + + +
+ { if $next_url == "" } + + { else } + + { /if } + photo + +
+ { if $previous_url == "" } + first photo reached + { else } + + previous photo + + { /if } + + + photo index + + + { if $next_url == "" } + last photo reached + { else } + + next photo + + { /if} +
+
+
+
+ { if $ExifMadeWith } + camera icon Image taken with:
+ {$ExifMadeWith}
+ { /if } + { if $ExifMadeOn } + calendar icon Image made on:
+ {$ExifMadeOn}
+ { /if } + { if $ExifOrigResolution } + resolution icon Original resolution:
+ {$ExifOrigResolution}
+ { /if } + Size: {$ExifFileSize}
+ { if $tags } +
+ available tags Tagged with:
+ { foreach from=$tags key=id item=name } + {$name}
+ { /foreach } + { /if } +
+ { if $prev_img } + photo icon Previous:
+ +
+
+ { /if} + { if $next_img } + photo icon Next:
+ +
+
+ { /if} +
+
+ diff --git a/themes/default/templates/slideshow.tpl b/themes/default/templates/slideshow.tpl new file mode 100644 index 0000000..bba5cd2 --- /dev/null +++ b/themes/default/templates/slideshow.tpl @@ -0,0 +1,9 @@ +{include file="header.tpl"} + +
+ + slideshow_img + +
+ +{include file="footer.tpl"} diff --git a/themes/default/templates/tags.tpl b/themes/default/templates/tags.tpl new file mode 100644 index 0000000..4f32ad0 --- /dev/null +++ b/themes/default/templates/tags.tpl @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + +
+ available tagsAvailable Tags: +
+
+
+ + + + + +
+ selected tagsSelected Tags: + +   + || + && +
+
+
+
 
diff --git a/themes/default/templates/welcome.tpl b/themes/default/templates/welcome.tpl new file mode 100644 index 0000000..9845755 --- /dev/null +++ b/themes/default/templates/welcome.tpl @@ -0,0 +1,29 @@ + + + + + + + + +
+ phpfspot welcomes you to a dynamic photo gallery for F-Spot
+
+
+ + + + +
+This application targets to provide an easy way, to presentate your F-Spot
+pictures in the web, in a way where you do not need any of the current
+web2.0 providers or setup complex apps like gallery
+
+You can addept this welcome page in the file "welcome.tpl" in the template
+directory. ;) +

+[ Click here to take a look at your photo index or select a tag from the list on the left ] +
+
+
+ -- cgit v1.2.3-18-g5258