piler/webui/view/theme/default/templates/common/layout-email.tpl

44 lines
1.2 KiB
Smarty
Raw Normal View History

2012-06-27 11:17:23 +02:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="hu" lang="hu">
<head>
2012-07-10 13:09:09 +02:00
<title>piler<?php if(isset($title) && $title) { ?> | <?php print $title; } ?></title>
2012-06-27 11:17:23 +02:00
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en" />
<meta name="keywords" content="piler email archiver" />
<meta name="description" content="piler email archiver" />
<meta name="rating" content="general" />
<meta name="robots" content="all" />
<link rel="stylesheet" type="text/css" href="/view/theme/default/stylesheet/style-<?php print THEME; ?>.css" />
2013-02-11 20:24:19 +01:00
<script type="text/javascript">
function append_value_from_slider(id, value)
{
var prefix = '\n';
a = opener.document.getElementById(id);
if(a && a.value == '') prefix = '';
a.value += prefix + value;
}
</script>
2012-06-27 11:17:23 +02:00
</head>
2013-02-11 20:24:19 +01:00
<body class="email">
2012-06-27 11:17:23 +02:00
2013-02-11 20:24:19 +01:00
<div id="wrapemail">
2012-06-27 11:17:23 +02:00
2012-07-10 13:09:09 +02:00
<?php if(isset($title) && $title) { ?><h3><?php print $title; ?></h3><?php } ?>
2013-02-11 20:24:19 +01:00
2012-06-27 11:17:23 +02:00
<?php print $content; ?>
</div> <!-- wrap -->
</body>
</html>