comparison plugins/calendar/skins/larry/templates/attachment.html @ 3:f6fe4b6ae66a

calendar plugin nearly as distributed
author Charlie Root
date Sat, 13 Jan 2018 08:56:12 -0500
parents
children
comparison
equal deleted inserted replaced
2:c828b0fd4a6e 3:f6fe4b6ae66a
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 <body class="extwin calendar attachmentwin">
8
9 <div id="header">
10 <div id="topline" role="banner" aria-labelledby="aria-label-topnav">
11 <div class="topleft">
12 <roundcube:container name="topline-left" id="topline-left" />
13 </div>
14 <roundcube:container name="topline-center" id="topline-center" />
15 <div class="topright">
16 <roundcube:container name="topline-right" id="topline-right" />
17 <roundcube:button name="close" type="link" label="close" class="closelink" onclick="self.close()" />
18 </div>
19 </div>
20 </div>
21
22 <div id="mainscreen">
23
24 <h1 class="voice"><roundcube:label name="attachment" />: <roundcube:var name="env:filename" /></h1>
25
26 <h2 id="aria-label-toolbar" class="voice"><roundcube:label name="arialabeltoolbar" /></h2>
27 <div id="attachmenttoolbar" class="toolbar fullwidth" role="toolbar" aria-labelledby="aria-label-toolbar">
28 <roundcube:button command="download-attachment" type="link" class="button download disabled" classAct="button download" classSel="button download pressed" label="download" title="download" />
29 <roundcube:button command="print-attachment" type="link" class="button print disabled" classAct="button print" classSel="button print pressed" label="print" title="print" />
30 <roundcube:container name="toolbar" id="messagetoolbar" />
31 </div>
32
33 <div id="mainscreencontent">
34
35 <div id="partheader" class="uibox listbox" role="contentinfo" aria-labelledby="aria-label-contentinfo">
36 <h2 class="boxtitle" id="aria-label-contentinfo"><roundcube:label name="properties" /></h2>
37 <div class="scroller">
38 <roundcube:object name="plugin.attachmentcontrols" class="listing" />
39 </div>
40 </div>
41
42 <div id="attachmentcontainer" class="uibox" role="main" aria-labelledby="aria-label-messagepart">
43 <h2 id="aria-label-messagepart" class="voice"><roundcube:label name="arialabelattachmentpreview" /></h2>
44 <div class="iframebox">
45 <roundcube:object name="plugin.attachmentframe" id="attachmentframe" frameborder="0" title="arialabelattachmentpreview" />
46 </div>
47 </div>
48
49 </div>
50
51 </div>
52
53 <script type="text/javascript">
54
55 $(document).ready(function() {
56 if (window.rcube_splitter) {
57 new rcube_splitter({ id:'mailpartsplitterv', p1:'#partheader', p2:'#attachmentcontainer',
58 orientation:'v', relative:true, start:226, min:150, size:12}).init();
59 }
60 });
61
62 </script>
63 </body>
64 </html>