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">
master
Simon McVittie 2008-07-13 15:13:20 +01:00
parent fe242ad996
commit 879d780603
1 changed files with 14 additions and 2 deletions

View File

@ -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-->