[Codestriker-commits] CVS update: codestriker/template/en/default header.html.tmpl
Brought to you by:
sits
|
From: <si...@us...> - 2008-06-23 07:31:27
|
User: sits
Date: 08/06/23 00:31:26
Modified: template/en/default header.html.tmpl
Log:
More CSS changes.
Index: header.html.tmpl
===================================================================
RCS file: /cvsroot/codestriker/codestriker/template/en/default/header.html.tmpl,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- header.html.tmpl 29 Jun 2007 07:13:59 -0000 1.15
+++ header.html.tmpl 23 Jun 2008 07:31:26 -0000 1.16
@@ -5,25 +5,21 @@
[%# Header HTML code to appear on each screen, after <body> tag. #%]
-<table width="100%" border="0">
-<tr>
- <td class="heading">
- <a class="heading" href="[% list_url | html_entity %]">[% main_title | html_entity %]</a>
- </td>
-</tr>
-</table>
+<div id="header">
+ <div class="heading">
+ <a href="[% list_url | html_entity %]">[% main_title | html_entity %]</a>
+ </div>
-[% IF displaymenu != 0 %]
-<p>
-<div class="menu">
- <a href="[% list_url | html_entity %]">List all open topics</a>
- [% IF list_open_topics_in_project_url != "" %]
- | <a href="[% list_open_topics_in_project_url | html_entity %]">List open topics in project</a>
+ [% IF displaymenu != 0 %]
+ <div class="menu">
+ <a href="[% list_url | html_entity %]">List all open topics</a>
+ [% IF list_open_topics_in_project_url != "" %]
+ | <a href="[% list_open_topics_in_project_url | html_entity %]">List open topics in project</a>
+ [% END %]
+ | <a href="[% create_topic_url | html_entity %]">Create new topic</a>
+ [% IF searchlist_enabled != 0 %] | <a href="[% search_url | html_entity %]">Search</a> [% END %]
+ [% IF help != "" %] | <a href="[% doc_url | html_entity %]/[% help %]">Help</a>[% END %]
+ </div>
[% END %]
- | <a href="[% create_topic_url | html_entity %]">Create new topic</a>
- [% IF searchlist_enabled != 0 %] | <a href="[% search_url | html_entity %]">Search</a> [% END %]
- [% IF help != "" %] | <a href="[% doc_url | html_entity %]/[% help %]">Help</a>[% END %]
</div>
-[% END %]
-<hr />
|