diff options
Diffstat (limited to 'templates/webmail/displayheaders.html.ep')
-rw-r--r-- | templates/webmail/displayheaders.html.ep | 44 |
1 files changed, 12 insertions, 32 deletions
diff --git a/templates/webmail/displayheaders.html.ep b/templates/webmail/displayheaders.html.ep index d823d9e..42e52fd 100644 --- a/templates/webmail/displayheaders.html.ep +++ b/templates/webmail/displayheaders.html.ep @@ -1,46 +1,26 @@ % layout 'mainlayout'; -<table id=displayheaders> +<div id=displayheaders> - <thead> - <tr> - <td id=folders> - %= include 'headers/_displayfolders'; - </td> - </tr> + %= include 'headers/_display_folders'; % if (my $loginmessage = stash 'loginmessage') { - <tr> - <td id=loginmessage> <%= $loginmessage %> </td> - </tr> + <p id=loginmessage> + %= $loginmessage + </p> % } - <tr> - <td id=navigation> - %= include 'headers/_display_top_nav'; - </td> - </tr> - </thead> + %= include 'headers/_display_top_nav'; - <tbody> - <tr> - <td> % if (@$msgs) { - %= include 'headers/_display_headers'; + %= include 'headers/_display_headers'; % } % else { - <p id=empty> <%= l 'empty_folder' %> </p> + <p id=empty-folder> + %= l 'empty_folder' + </p> % } - </td> - </tr> - </tbody> - <tfoot> - <tr> - <td class=navigation> - %= include 'headers/_display_bot_nav'; - </td> - </tr> - </tfoot> + %= include 'headers/_display_bot_nav'; -</table>
\ No newline at end of file +</div> |