Affected themes: bulletproof, 2k11, next These themes will use the core method of including the user.css in serendipity.css starting with 2.0.1. A note has been added to all three themes' theme options to document that the possibility of a user.css exists. References #280
51 lines
2.9 KiB
Smarty
51 lines
2.9 KiB
Smarty
<!doctype html>
|
|
<!--[if IE 8 ]> <html class="no-js lt-ie9" lang="{$lang}"> <![endif]-->
|
|
<!--[if gt IE 8]><!--> <html class="no-js" lang="{$lang}"> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="{$head_charset}">
|
|
<title>{$CONST.SERENDIPITY_ADMIN_SUITE}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="dns-prefetch" href="//ajax.googleapis.com">
|
|
{if $template_option.webfonts == 'osans'}
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic">
|
|
{elseif $template_option.webfonts == 'ssans'}
|
|
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:400italic,700italic,400,700">
|
|
{elseif $template_option.webfonts == 'rsans'}
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic">
|
|
{elseif $template_option.webfonts == 'lsans'}
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic">
|
|
{elseif $template_option.webfonts == 'mserif'}
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Merriweather:400,400italic,700,700italic">
|
|
{elseif $template_option.webfonts == 'dserif'}
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700,700italic">
|
|
{/if}
|
|
<link rel="stylesheet" href="{$serendipityHTTPPath}{$serendipityRewritePrefix}serendipity.css">
|
|
<!--[if lte IE 8]>
|
|
<link rel="stylesheet" href="{serendipity_getFile file="oldie.css"}">
|
|
<![endif]-->
|
|
<script src="{serendipity_getFile file="scripts/modernizr/modernizr.js"}"></script>
|
|
{serendipity_hookPlugin hook="backend_header" hookAll="true"}
|
|
<script src="{serendipity_getFile file='admin/js/plugins.js'}"></script>
|
|
<script src="{serendipity_getFile file='admin/serendipity_editor.js'}"></script>
|
|
<script type="text/javascript">
|
|
window.onload = function() {ldelim}
|
|
parent.document.getElementById('serendipity_iframe').style.height = document.getElementById('main').offsetHeight
|
|
+ parseInt(document.getElementById('main').style.marginTop)
|
|
+ parseInt(document.getElementById('main').style.marginBottom)
|
|
+ 'px';
|
|
parent.document.getElementById('serendipity_iframe').scrolling = 'no';
|
|
parent.document.getElementById('serendipity_iframe').style.border = 0;
|
|
{rdelim}
|
|
</script>
|
|
</head>
|
|
<body style="padding: 0; margin: 0;"{if $template_option.webfonts != 'none'} class="{$template_option.webfonts}"{/if}>
|
|
<div id="main" class="clearfix" style="padding: 0; margin: 5px auto; width: 98%;">
|
|
<main id="primary">
|
|
{$preview}
|
|
</main>
|
|
</div>
|
|
|
|
<script src="{serendipity_getFile file="scripts/master.js"}"></script>
|
|
</body>
|
|
</html>
|