summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpfspot.js7
-rw-r--r--templates/single_photo.tpl2
-rw-r--r--templates/tags.tpl4
-rw-r--r--templates/welcome.tpl23
4 files changed, 31 insertions, 5 deletions
diff --git a/phpfspot.js b/phpfspot.js
index c34f31a..c691b55 100644
--- a/phpfspot.js
+++ b/phpfspot.js
@@ -63,3 +63,10 @@ function refreshPhotoIndex()
}
}
+function click(object)
+{
+ if(object.blur)
+ object.blur();
+
+}
+
diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl
index 51d4663..9f2bcd9 100644
--- a/templates/single_photo.tpl
+++ b/templates/single_photo.tpl
@@ -5,7 +5,7 @@
<b>Photo {$image_name}</b>, {$c_date}, {$madewith}<br />
</td>
<td class="index_header" style="text-align: right;">
- <a href="{$image_url_full}" target="_blank">
+ <a href="{$image_url_full}" target="_blank" onclick="click(this);">
<img src="resources/loupe.png" />
</a>
<img src="resources/information.png" />
diff --git a/templates/tags.tpl b/templates/tags.tpl
index 4b30f0c..812b36a 100644
--- a/templates/tags.tpl
+++ b/templates/tags.tpl
@@ -1,6 +1,6 @@
<table>
<tr>
- <td style="vertical-align: middle;">
+ <td style="vertical-align: middle; text-decoration: underline;">
<img src="resources/available_tags.png" \>Available Tags:
</td>
</tr>
@@ -10,7 +10,7 @@
</td>
</tr>
<tr>
- <td style="vertical-align: middle;">
+ <td style="vertical-align: middle; text-decoration: underline;">
<img src="resources/selected_tags.png" />Selected Tags:
</td>
</tr>
diff --git a/templates/welcome.tpl b/templates/welcome.tpl
index 07e1fbe..0529887 100644
--- a/templates/welcome.tpl
+++ b/templates/welcome.tpl
@@ -1,5 +1,16 @@
-welcome to the finest photo gallery for F-Spot<br />
-<br />
+<!-- welcome -->
+<table>
+ <tr>
+ <td class="index_header" style="text-align: left;">
+ Welcome to the finest photo gallery for F-Spot<br />
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <div id='single'>
+ <table>
+ <tr>
+ <td>
This application targets to provide an easy way, to presentate<br />
your f-spot pictures in the web, in a way you don't need any of<br />
current web2.0 providers or setup complex apps like gallery<br />
@@ -7,3 +18,11 @@ current web2.0 providers or setup complex apps like gallery<br />
I suggest that you change this text after you have finished the installation ;)
<br /><br />
<a href="javascript:showPhotoIndex();">Click here if you want to see your photo index</a>
+ </td>
+ </tr>
+ </table>
+ </div>
+ </td>
+ </tr>
+</table>
+<!-- /welcome -->