aboutsummaryrefslogtreecommitdiffstats
path: root/share/skin/base
diff options
context:
space:
mode:
authorwreis <wreis@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-05-27 18:19:52 +0000
committerwreis <wreis@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-05-27 18:19:52 +0000
commitf38511c5ebf5947ce2a22fe72ec27c16631def86 (patch)
tree9595e03c133ca6cc70cc0f5d5e5a0bf55b8ba881 /share/skin/base
parent201baa3103a916699cab1ade9d67a34c32ae19d1 (diff)
downloadreaction-f38511c5ebf5947ce2a22fe72ec27c16631def86.tar.gz
reaction-f38511c5ebf5947ce2a22fe72ec27c16631def86.zip
changed approach as requested by mdk
Diffstat (limited to 'share/skin/base')
-rw-r--r--share/skin/base/layout/collection.tt6
-rw-r--r--share/skin/base/layout/field.tt4
-rw-r--r--share/skin/base/layout/list_view.tt4
-rw-r--r--share/skin/base/layout/object.tt4
-rw-r--r--share/skin/base/layout/site_layout.tt8
5 files changed, 14 insertions, 12 deletions
diff --git a/share/skin/base/layout/collection.tt b/share/skin/base/layout/collection.tt
index d4703f1..691b01e 100644
--- a/share/skin/base/layout/collection.tt
+++ b/share/skin/base/layout/collection.tt
@@ -1,5 +1,7 @@
=for layout widget
-[% members %]
+<div id="collection_members">
+ [% members %]
+</div>
-=cut \ No newline at end of file
+=cut
diff --git a/share/skin/base/layout/field.tt b/share/skin/base/layout/field.tt
index 99954ab..a4508d6 100644
--- a/share/skin/base/layout/field.tt
+++ b/share/skin/base/layout/field.tt
@@ -5,10 +5,10 @@
=for layout label
-<strong > [% label %]: </strong>
+<span class="field_label"> [% label %]: </span>
=for layout value_layout
-[% field_value %]
+<span class="field_value">[% field_value %]</span>
=cut
diff --git a/share/skin/base/layout/list_view.tt b/share/skin/base/layout/list_view.tt
index f4f6501..f7a4ef4 100644
--- a/share/skin/base/layout/list_view.tt
+++ b/share/skin/base/layout/list_view.tt
@@ -2,11 +2,11 @@
=for layout widget
-[% pager %]
+[% pager_fragment %]
[% call_next %]
-[% pager %]
+[% pager_fragment %]
[% actions %]
diff --git a/share/skin/base/layout/object.tt b/share/skin/base/layout/object.tt
index cec7b4d..a67e089 100644
--- a/share/skin/base/layout/object.tt
+++ b/share/skin/base/layout/object.tt
@@ -1,9 +1,11 @@
=for layout widget
+<div id="object_field_list">
[% field_list %]
+</div>
=for layout field
- [% call_next %] <br>
+ [% call_next %]
=cut
diff --git a/share/skin/base/layout/site_layout.tt b/share/skin/base/layout/site_layout.tt
index e9b70ca..5909714 100644
--- a/share/skin/base/layout/site_layout.tt
+++ b/share/skin/base/layout/site_layout.tt
@@ -1,8 +1,6 @@
=for layout widget
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<html>
<head>
[% head %]
@@ -37,13 +35,13 @@
=for layout head_style
<!-- stylesheet links go here -->
-
+
=for layout body
[% inner %]
=for layout header
-<h1>[% title %]</h1>
+<span class="site_layout_title">[% title %]</span>
=cut