67 lines
3.3 KiB
Smarty
67 lines
3.3 KiB
Smarty
{if $is_xhtml}
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
{else}
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
{/if}
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$lang}" lang="{$lang}">
|
|
<head>
|
|
<title>{$CONST.SERENDIPITY_ADMIN_SUITE}</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset={$head_charset}" />
|
|
<meta name="generator" content="Serendipity v.{$serendipityVersion}" />
|
|
<link rel="stylesheet" type="text/css" href="{serendipity_getFile file="base.css" frontend=true}" />
|
|
<link rel="stylesheet" type="text/css" href="{$head_link_stylesheet}" />
|
|
{if $head_link_stylesheet_frontend}
|
|
<link rel="stylesheet" href="{$head_link_stylesheet_frontend}">
|
|
{else}
|
|
<link rel="stylesheet" href="{$serendipityHTTPPath}{$serendipityRewritePrefix}serendipity.css">
|
|
{/if}
|
|
|
|
<!--[if IE 6]>
|
|
<link rel="stylesheet" type="text/css" href="{serendipity_getFile file="ie6.css" frontend=true}" />
|
|
<![endif]-->
|
|
<!--[if IE 7]>
|
|
<link rel="stylesheet" type="text/css" href="{serendipity_getFile file="ie7.css" frontend=true}" />
|
|
<![endif]-->
|
|
<!-- additional colorset stylesheet -->
|
|
<link rel="stylesheet" type="text/css" href="{$serendipityHTTPPath}templates/{$template}/{$template_option.colorset}_style.css" />
|
|
|
|
<script type="text/javascript">
|
|
window.onload = function() {ldelim}
|
|
parent.document.getElementById('serendipity_iframe').style.height = document.getElementById('content').offsetHeight
|
|
+ parseInt(document.getElementById('content').style.marginTop)
|
|
+ parseInt(document.getElementById('content').style.marginBottom)
|
|
+ 'px';
|
|
parent.document.getElementById('serendipity_iframe').scrolling = 'no';
|
|
parent.document.getElementById('serendipity_iframe').style.border = 0;
|
|
{rdelim}
|
|
</script>
|
|
</head>
|
|
|
|
<body style="padding: 0px; margin: 0px;">
|
|
<div id="wrapper" style="width: 100%; border: 0;">
|
|
<div id="content" style="padding: 5px; margin: 0px;">
|
|
{if $mode == 'preview'}
|
|
<div class="clearfix">
|
|
{elseif $mode == 'save'}
|
|
<div class="clearfix">
|
|
<div style="float: left; height: 75px"></div>
|
|
{$updertHooks}
|
|
{if $res}
|
|
<div class="serendipity_msg_important">{$CONST.ERROR}: <b>{$res}</b></div>
|
|
{else}
|
|
{if $lastSavedEntry}
|
|
<script type="text/javascript">$(document).ready(function() {
|
|
parent.document.forms['serendipityEntry']['serendipity[id]'].value = "{$lastSavedEntry}";
|
|
});
|
|
</script>
|
|
{/if}
|
|
<span class="msg_success"><span class="icon-ok-circled"></span> {$CONST.ENTRY_SAVED}</span>
|
|
<a href="{$entrylink}" target="_blank">{$CONST.VIEW}</a>
|
|
{/if}
|
|
{/if}
|
|
{$preview}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|