diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.tpl | 2 | ||||
-rw-r--r-- | templates/tags.tpl | 39 |
2 files changed, 32 insertions, 9 deletions
diff --git a/templates/index.tpl b/templates/index.tpl index b3e8a16..38af584 100644 --- a/templates/index.tpl +++ b/templates/index.tpl @@ -1,6 +1,6 @@ {include file="header.tpl"} <body onload="refreshAvailableTags(); refreshSelectedTags();"> - <div id="logo">noch keins da</div> + <div id="logo">{$page_title}</div> <div id="tags"> {include file="tags.tpl"} </div> diff --git a/templates/tags.tpl b/templates/tags.tpl index f4664f9..2a6a7a8 100644 --- a/templates/tags.tpl +++ b/templates/tags.tpl @@ -1,8 +1,31 @@ - The following tags are available:<br /> -<div id='available_tags'> -</div> - The following tags have been selected: <br /> -<div id='selected_tags'> -</div> -<br /> -<a href="javascript:showPhotoIndex();">Photo Index</a> +<table> + <tr> + <td> + The following tags are available: + </td> + </tr> + <tr> + <td> + <div id='available_tags'></div> + </td> + </tr> + <tr> + <td> + The following tags have been selected: + </td> + </tr> + <tr> + <td> + <div id='selected_tags'></div> + </td> + </tr> + <tr> + <td> </td> + </tr> + <tr> + <td> + <a href="javascript:showPhotoIndex();">Photo Index</a> + <a href="javascript:Tags('reset', 0);">Reset Tags</a> + </td> + </tr> +</table> |