diff options
author | thomascube <thomas@roundcube.net> | 2011-12-12 17:23:19 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-12-12 17:23:19 +0000 |
commit | c7dcb30025c184c1e02a2e859b2f10f874c479f6 (patch) | |
tree | 20f35fd1dcb4f9d0372d6a8d4df044fd5f437294 /skins/larry/templates/message.html | |
parent | 312ad9d51e9fdc05897cf983683903e791dce6c5 (diff) |
More from Larry...
Diffstat (limited to 'skins/larry/templates/message.html')
-rw-r--r-- | skins/larry/templates/message.html | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/skins/larry/templates/message.html b/skins/larry/templates/message.html new file mode 100644 index 000000000..9cb5928c2 --- /dev/null +++ b/skins/larry/templates/message.html @@ -0,0 +1,72 @@ +<roundcube:object name="doctype" value="html5" /> +<html> +<head> +<title><roundcube:object name="pagetitle" /></title> +<roundcube:include file="/includes/links.html" /> +</head> +<body> + +<roundcube:include file="/includes/header.html" /> + +<div id="mainscreen"> + +<div id="mailview-left"> +<roundcube:object name="mailboxlist" type="select" noSelection="moveto" maxlength="25" onchange="rcmail.command('moveto', this.options[this.selectedIndex].value)" class="mailboxlist" folder_filter="mail" /> + +<!-- folders list --> +<div id="mailboxcontainer" class="uibox listbox"> +<div class="scroller"> +<roundcube:object name="mailboxlist" id="mailboxlist"class="listing" folder_filter="mail" /> +</div> +</div> + +</div> + +<div id="mailview-right"> + +<!-- toolbar --> +<div id="messagetoolbar" class="fullwidth"> +<roundcube:include file="/includes/mailtoolbar.html" /> +</div> + +<div id="mailview-top"> +<div id="messageheader" class="uibox"> +<roundcube:object name="messageHeaders" class="headers-table" addicon="/images/addcontact.png" /> +<roundcube:object name="messageFullHeaders" id="full-headers" /> +</div> + +<div id="messagecontent" class="uibox"> +<div class="rightcol"> +<roundcube:object name="messageAttachments" id="attachment-list" /> +</div> +<div class="leftcol"> +<roundcube:object name="messageObjects" id="message-objects" /> +<roundcube:object name="messageBody" id="messagebody" /> +</div> +</div> + +<!-- list footer --> +<div id="messagelistfooter" class="rightalign"> + <div id="countcontrols" class="pagenav"> + <roundcube:object name="messageCountDisplay" class="countdisplay" /> + <roundcube:button command="firstmessage" type="link" class="button firstpage disabled" classAct="button firstpage" classSel="button firstpage pressed" innerClass="inner" title="firstmessage" content="|&lt;" /> + <roundcube:button command="previousmessage" type="link" class="button prevpage disabled" classAct="button prevpage" classSel="button prevpage pressed" innerClass="inner" title="previousmessage" content="&lt;" /> + <roundcube:button command="nextmessage" type="link" class="button nextpage disabled" classAct="button nextpage" classSel="button nextpage pressed" innerClass="inner" title="nextmessage" content="&gt;" /> + <roundcube:button command="lastmessage" type="link" class="button lastpage disabled" classAct="button lastpage" classSel="button lastpage pressed" innerClass="inner" title="lastmessage" content="&gt;|" /> + </div> +</div> + +</div><!-- end mailview-top --> + +<div id="mailview-bottom" class="uibox"> +<roundcube:object name="message" id="message" class="statusbar" /> +</div> + +</div><!-- end mailview-right --> + +</div><!-- end mainscreen --> + +<roundcube:include file="/includes/footer.html" /> + +</body> +</html> |