comparison skins/classic/templates/messageerror.html @ 0:4681f974d28b

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:52:31 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4681f974d28b
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title><roundcube:object name='productname' /> :: <roundcube:label name='servererror' /></title>
5 <roundcube:include file="/includes/links.html" />
6
7 <roundcube:if condition="env:action!='show'" />
8
9 </head>
10 <body class="iframe" style="background-color:#F2F2F2;">
11
12 <div style="margin:20px auto; text-align:center">
13 <img src="/images/watermark.gif" width="260" height="228" alt="" />
14 </div>
15
16 </body>
17
18 <roundcube:else />
19
20 <script type="text/javascript" src="/splitter.js"></script>
21 <script type="text/javascript" src="/functions.js"></script>
22 <style type="text/css">
23 #mailboxlist-container { width: <roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv-5 : 170" />px; }
24 #messageframe { left: <roundcube:exp expression="!empty(cookie:mailviewsplitterv) ? cookie:mailviewsplitterv+5 : 180" />px; }
25 </style>
26 </head>
27
28 <body>
29
30 <roundcube:include file="/includes/taskbar.html" />
31 <roundcube:include file="/includes/header.html" />
32
33 <div id="messagetoolbar">
34 <roundcube:button command="list" type="link" class="button back" classAct="button back" classSel="button backSel" title="backtolist" content=" " />
35 <roundcube:button command="compose" type="link" class="button compose" classAct="button compose" classSel="button composeSel" title="writenewmessage" content=" " />
36 </div>
37
38 <div id="mainscreen">
39 <div id="mailleftcontainer">
40 <div id="mailboxlist-container">
41 <div class="boxtitle"><roundcube:label name="mailboxlist" /></div>
42 <div class="boxlistcontent">
43 <roundcube:object name="mailboxlist" id="mailboxlist" class="treelist" folder_filter="mail" />
44 </div>
45 <div class="boxfooter"></div>
46 </div>
47 </div>
48
49 <div id="messageframe" style="background-color:#F2F2F2;">
50 <div style="margin:20px auto; text-align:center">
51 <img src="/images/watermark.gif" width="260" height="228" alt="" />
52 </div>
53 </div>
54
55 </div>
56
57 <script type="text/javascript">
58 var mailviewsplitv = new rcube_splitter({id:'mailviewsplitterv', p1: 'mailboxlist-container', p2: 'messageframe', orientation: 'v', relative: true, start: 165});
59 rcmail.add_onload('mailviewsplitv.init()');
60 </script>
61
62 <script type="text/javascript">
63 rcube_init_mail_ui();
64 </script>
65
66 </body>
67 <roundcube:endif />
68
69 </html>