comparison skins/larry/templates/message.html @ 0:4681f974d28b

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:52:31 -0500
parents
children bf99236cc5cd
comparison
equal deleted inserted replaced
-1:000000000000 0:4681f974d28b
1 <roundcube:object name="doctype" value="html5" />
2 <html>
3 <head>
4 <title><roundcube:object name="pagetitle" /></title>
5 <roundcube:include file="/includes/links.html" />
6 </head>
7 <roundcube:if condition="env:extwin" /><body class="noscroll extwin"><roundcube:else /><body class="noscroll"><roundcube:endif />
8
9 <roundcube:include file="/includes/header.html" />
10
11 <div id="mainscreen">
12
13 <h1 class="voice"><roundcube:object name="messageHeaders" valueOf="subject" /></h1>
14
15 <!-- toolbar -->
16 <h2 id="aria-label-toolbar" class="voice"><roundcube:label name="arialabeltoolbar" /></h2>
17 <div id="messagetoolbar" class="toolbar fullwidth" role="toolbar" aria-labelledby="aria-label-toolbar">
18 <roundcube:if condition="!env:extwin" />
19 <roundcube:button command="list" type="link" class="button back disabled" classAct="button back" classSel="button back pressed" label="back" />
20 <roundcube:endif />
21 <roundcube:include file="/includes/mailtoolbar.html" />
22 </div>
23
24 <roundcube:if condition="!env:extwin" />
25
26 <div id="mainscreencontent">
27
28 <div id="mailview-left">
29
30 <!-- folders list -->
31 <div id="mailboxcontainer" class="uibox listbox" role="navigation" aria-labelledby="aria-label-folderlist">
32 <h2 id="aria-label-folderlist" class="voice"><roundcube:label name="arialabelfolderlist" /></h2>
33 <div class="scroller">
34 <roundcube:object name="mailboxlist" id="mailboxlist" class="treelist listing folderlist" folder_filter="mail" unreadwrap="%s" />
35 </div>
36 </div>
37
38 </div>
39
40 <div id="mailview-right" class="uibox" role="main">
41 <roundcube:else />
42 <roundcube:object name="mailboxlist" folder_filter="mail" type="js" />
43
44 <div id="mailview-right" class="offset fullwidth uibox" role="main">
45 <roundcube:endif />
46
47 <div id="messageheader">
48 <span class="moreheaderstoggle"></span>
49
50 <!-- record navigation -->
51 <div id="countcontrols" class="pagenav" role="navigation" aria-labelledby="aria-label-countcontrols">
52 <h2 id="aria-label-countcontrols" class="voice"><roundcube:label name="arialabelmessagenav" /></h2>
53 <roundcube:object name="messageCountDisplay" class="countdisplay" />
54 <roundcube:button command="previousmessage" type="link" class="button prevpage disabled" classAct="button prevpage" classSel="button prevpage pressed" innerClass="inner" title="previousmessage" label="previous" />
55 <roundcube:button command="nextmessage" type="link" class="button nextpage disabled" classAct="button nextpage" classSel="button nextpage pressed" innerClass="inner" title="nextmessage" label="next" />
56 </div>
57
58 <roundcube:if condition="env:optional_format=='text'" />
59 <div id="formatcontrols">
60 <span class="buttongroup">
61 <roundcube:button command="change-format" prop="html" type="link" class="button first changeformat html selected" innerClass="icon" title="changeformathtml" /><roundcube:button command="change-format" prop="text" type="link" class="button last changeformat text" classSel="button last changeformat text pressed" innerClass="icon" title="changeformattext" />
62 </span>
63 </div>
64 <roundcube:elseif condition="env:optional_format=='html'" />
65 <div id="formatcontrols">
66 <span class="buttongroup">
67 <roundcube:button command="change-format" prop="html" type="link" class="button first changeformat html" classSel="button first changeformat html pressed" innerClass="icon" title="changeformathtml" /><roundcube:button command="change-format" prop="text" type="link" class="button last changeformat text selected" innerClass="icon" title="changeformattext" />
68 </span>
69 </div>
70 <roundcube:endif />
71
72 <h2 class="subject"><span class="voice"><roundcube:label name="subject" />: </span><roundcube:object name="messageHeaders" valueOf="subject" /></h2>
73 <div class="message-headers">
74 <roundcube:object name="messageHeaders" class="headers-table" addicon="/images/addcontact.png" exclude="subject" max="20" />
75 </div>
76 <roundcube:object name="messageFullHeaders" id="full-headers" />
77
78 <div id="contactphoto"><roundcube:object name="contactphoto" /></div>
79 </div>
80
81 <div id="messagecontent">
82 <div class="rightcol" role="region" aria-labelledby="aria-label-messageattachments">
83 <h2 id="aria-label-messageattachments" class="voice"><roundcube:label name="attachments" /></h2>
84 <roundcube:object name="messageAttachments" id="attachment-list" class="attachmentslist" />
85 </div>
86 <div class="leftcol" role="region" aria-labelledby="aria-label-messagebody">
87 <h2 id="aria-label-messagebody" class="voice"><roundcube:label name="arialabelmessagebody" /></h2>
88 <roundcube:object name="messageObjects" id="message-objects" />
89 <roundcube:object name="messageBody" id="messagebody" headertableclass="message-partheaders headers-table" />
90 </div>
91 </div>
92
93 </div><!-- end mailview-right -->
94
95 <roundcube:if condition="!env:extwin" />
96 </div><!-- end mainscreencontent -->
97 <roundcube:endif />
98
99 </div><!-- end mainscreen -->
100
101 <div id="attachmentmenu" class="popupmenu" aria-hidden="true">
102 <ul class="toolbarmenu" id="attachmentoptionsmenu" role="menu">
103 <roundcube:button command="open-attachment" id="attachmenuopen" type="link-menuitem" label="open" class="icon" classAct="icon active" innerclass="icon extwin" />
104 <roundcube:button command="download-attachment" id="attachmenudownload" type="link-menuitem" label="download" class="icon" classAct="icon active" innerclass="icon download" />
105 <roundcube:container name="attachmentmenu" id="attachmentoptionsmenu" />
106 </ul>
107 </div>
108
109 <roundcube:include file="/includes/footer.html" />
110
111 </body>
112 </html>