aboutsummaryrefslogtreecommitdiff
path: root/templates/inlinepage.tmpl
diff options
context:
space:
mode:
authorSimon McVittie <http://smcv.pseudorandom.co.uk/>2008-07-13 15:13:20 +0100
committerSimon McVittie <http://smcv.pseudorandom.co.uk/>2008-07-13 15:13:20 +0100
commit879d7806032bb673e3fb5459e67de90a8ad8c72b (patch)
tree7f56e245031617d4a96db0148ea19d36729f1e69 /templates/inlinepage.tmpl
parentfe242ad996e2778ef4203d18c61e3e660d8f3a38 (diff)
downloadikiwiki-879d7806032bb673e3fb5459e67de90a8ad8c72b.tar
ikiwiki-879d7806032bb673e3fb5459e67de90a8ad8c72b.tar.gz
Add more CSS hooks to inlinepage.tmpl
* Wrap everything before the content in <div class="inlineheader"> * Wrap the inlined content itself in <div class="inlinecontent"> * Wrap everything after the content in <div class="inlinefooter">
Diffstat (limited to 'templates/inlinepage.tmpl')
-rw-r--r--templates/inlinepage.tmpl16
1 files changed, 14 insertions, 2 deletions
diff --git a/templates/inlinepage.tmpl b/templates/inlinepage.tmpl
index 71d57b008..ffcb897a8 100644
--- a/templates/inlinepage.tmpl
+++ b/templates/inlinepage.tmpl
@@ -1,4 +1,7 @@
<div class="inlinepage">
+
+<div class="inlineheader">
+
<TMPL_IF NAME="AUTHOR">
<span class="author">
<TMPL_IF NAME="AUTHORURL">
@@ -15,7 +18,14 @@
<a href="<TMPL_VAR PAGEURL>"><TMPL_VAR TITLE></a>
</TMPL_IF>
</span>
+
+</div><!--.inlineheader-->
+
+<div class="inlinecontent">
<TMPL_VAR CONTENT>
+</div><!--.inlinecontent-->
+
+<div class="inlinefooter">
<span class="pagedate">
Posted <TMPL_VAR CTIME>
@@ -52,7 +62,9 @@ License: <TMPL_VAR LICENSE>
<li><TMPL_VAR DISCUSSIONLINK></li>
</TMPL_IF>
</ul>
-</div>
+</div><!--.actions-->
</TMPL_IF>
-</div>
+</div><!--.inlinefooter-->
+
+</div><!--.inlinepage-->