aboutsummaryrefslogtreecommitdiffstats
path: root/root/template/layout
diff options
context:
space:
mode:
authorBuchan Milne <buchan@mageia.org>2010-11-02 20:29:21 +0000
committerBuchan Milne <buchan@mageia.org>2010-11-02 20:29:21 +0000
commit7fa312026a6caba28550339fc29edfd790e78fda (patch)
treec054f6b854a3c6f6cba566b02b3fdd95b91a124c /root/template/layout
parent11665d7a97e320fb38fd076da3ad7c62f36a1362 (diff)
downloadidentity-7fa312026a6caba28550339fc29edfd790e78fda.tar
identity-7fa312026a6caba28550339fc29edfd790e78fda.tar.gz
identity-7fa312026a6caba28550339fc29edfd790e78fda.tar.bz2
identity-7fa312026a6caba28550339fc29edfd790e78fda.tar.xz
identity-7fa312026a6caba28550339fc29edfd790e78fda.zip
Add some CSS themeing, and refactor some template stuff using preprocess
Add missing tempaltes
Diffstat (limited to 'root/template/layout')
-rw-r--r--root/template/layout40
1 files changed, 40 insertions, 0 deletions
diff --git a/root/template/layout b/root/template/layout
new file mode 100644
index 0000000..8a6b601
--- /dev/null
+++ b/root/template/layout
@@ -0,0 +1,40 @@
+<!-- BEGIN template/header -->
+<div id="header">[% PROCESS template/header %]</div>
+<!-- END template/header -->
+
+<div id="outerColumnContainer">
+ <div id="leftColumn">
+ <div class="inside">
+ <div class="vnav">
+ <ul>
+ [% FOREACH subpage IN subpages %]
+ <li><a href="[% c.uri_for(subpage.page) %]">[% subpage.title %]</a></li>
+ [% END %]
+ </ul>
+ </div>
+ </div>
+ </div>
+
+ <div id="innerColumnContainer">
+ <!-- div id="SOWrap" -->
+ <div id="middleColumn">
+ <div class="inside">
+ [% IF errros %]
+ <span class="error">
+ [% FOREACH error IN errors %]
+ [% error %]<br/>
+ [% END %]
+ </span>
+ [% END %]
+ <div id="content">
+ [% content %]
+ </div>
+ </div>
+ <div class="clear"></div>
+ </div>
+ <div class="clear"></div>
+ </div>
+ <!-- /div -->
+ </div>
+</div>
+<!-- div id="footer">[% PROCESS template/footer %]</div -->