diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-12-28 20:32:51 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-12-28 20:32:51 +0000 |
commit | c1cd9b6b3305b699ce9990bc5ca27a7170643ede (patch) | |
tree | c848cf7bc6728f1a74566b9b03def48640a3946f /templates | |
parent | d8b959eb0da3881821e363e1c51c757b1695ffa2 (diff) | |
download | ikiwiki-c1cd9b6b3305b699ce9990bc5ca27a7170643ede.tar ikiwiki-c1cd9b6b3305b699ce9990bc5ca27a7170643ede.tar.gz |
Changes from StefanoZacchiroli:
- Use div for inlinepage actions, not a span
- Add an enclosing "trailer" div
Also, change pageinfo span into a div, since it now can include <p>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/inlinepage.tmpl | 8 | ||||
-rw-r--r-- | templates/page.tmpl | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/templates/inlinepage.tmpl b/templates/inlinepage.tmpl index 3657a17e6..aaadaad10 100644 --- a/templates/inlinepage.tmpl +++ b/templates/inlinepage.tmpl @@ -17,6 +17,8 @@ </span> <TMPL_VAR CONTENT> +<div class="trailer"> + <span class="pageinfo"> Posted <TMPL_VAR CTIME> </span> @@ -31,7 +33,7 @@ Tags: </span> <TMPL_IF NAME="HAVE_ACTIONS"> -<span class="actions"> +<div class="actions"> <ul> <TMPL_IF NAME="EDITURL"> <li><a href="<TMPL_VAR EDITURL>">Edit</a></li> @@ -40,7 +42,9 @@ Tags: <li><TMPL_VAR DISCUSSIONLINK></li> </TMPL_IF> </ul> -</span> +</div> </TMPL_IF> </div> + +</div> diff --git a/templates/page.tmpl b/templates/page.tmpl index fdf750244..471ed1a7d 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -77,11 +77,11 @@ Links: </div> <div id="footer"> -<span class="pageinfo"> +<div class="pageinfo"> <!-- from <TMPL_VAR NAME=WIKINAME> --> Last edited <TMPL_VAR NAME=MTIME> <TMPL_IF EXTRAFOOTER><TMPL_VAR EXTRAFOOTER></TMPL_IF> -</span> +</div> </div> </body> |