Add contactprint.html and messageprint.html templates
parent
2de6444478
commit
af9817ff37
@ -1,21 +1,24 @@
|
||||
<roundcube:add_label name="errortitle" />
|
||||
|
||||
<roundcube:object name="doctype" value="html5" />
|
||||
<html>
|
||||
<head>
|
||||
<title><roundcube:object name="pagetitle" /></title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" id="viewport" />
|
||||
<link rel="shortcut icon" href="/images/favicon.ico"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" id="viewport">
|
||||
<link rel="shortcut icon" href="/images/favicon.ico">
|
||||
<link rel="stylesheet" href="/bootstrap/bootstrap.min.css">
|
||||
<roundcube:if condition="config:devel_mode" />
|
||||
<link rel="stylesheet/less" type="text/css" href="/styles/styles.less" />
|
||||
<link rel="stylesheet/less" type="text/css" href="/styles/styles.less">
|
||||
<roundcube:link rel="stylesheet/less" type="text/css" href="/styles/print.less" condition="env:action == 'print'" />
|
||||
<script src="/styles/less.min.js" data-env="development"></script>
|
||||
<roundcube:else />
|
||||
<link rel="stylesheet" type="text/css" href="/styles/styles.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/styles/styles.css">
|
||||
<roundcube:link rel="stylesheet" type="text/css" href="/styles/print.css" condition="env:action == 'print'" />
|
||||
<roundcube:endif />
|
||||
<roundcube:add_label name="errortitle" />
|
||||
</head>
|
||||
<roundcube:if condition="!env:framed || env:extwin" />
|
||||
<body class="task-<roundcube:exp expression="env:task ?: 'error'" />">
|
||||
<body class="task-<roundcube:exp expression="env:task ?: 'error'">">
|
||||
<div id="layout">
|
||||
<roundcube:else />
|
||||
<body class="iframe task-<roundcube:exp expression="env:task ?: 'error'" />">
|
||||
<body class="iframe task-<roundcube:exp expression="env:task ?: 'error'">">
|
||||
<roundcube:endif />
|
||||
|
@ -0,0 +1,14 @@
|
||||
<roundcube:include file="/includes/layout.html" />
|
||||
|
||||
<div id="content" class="content" role="main">
|
||||
<div id="contact-details">
|
||||
<div id="contactphoto">
|
||||
<roundcube:object name="contactphoto" id="contactpic" placeholder="/images/contactpic.png" placeholderGroup="/images/contactgroup.png" />
|
||||
</div>
|
||||
<roundcube:object name="contacthead" id="contacthead" />
|
||||
<br style="clear:both">
|
||||
<roundcube:object name="contactdetails" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<roundcube:include file="/includes/footer.html" />
|
@ -0,0 +1,11 @@
|
||||
<roundcube:include file="/includes/layout.html" />
|
||||
|
||||
<div id="content" class="content" role="main">
|
||||
<div id="printmessageframe">
|
||||
<roundcube:object name="messageHeaders" class="headers-table" max="10" />
|
||||
<roundcube:object name="messageAttachments" id="attachment-list" />
|
||||
<roundcube:object name="messageBody" id="messagebody" showImages="false" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<roundcube:include file="/includes/footer.html" />
|
Loading…
Reference in New Issue