2013-05-11 20:44:25 +04:00
|
|
|
<!doctype html>
|
|
|
|
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
|
|
|
|
<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]-->
|
|
|
|
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
|
2013-05-19 12:04:20 +04:00
|
|
|
<!--[if (gte IE 9)| IEMobile |!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
|
2013-05-11 20:44:25 +04:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
2013-05-30 02:49:49 +04:00
|
|
|
<title>{{siteTitle}}</title>
|
|
|
|
<meta name="description" content="{{siteDescription}}">
|
2013-05-11 20:44:25 +04:00
|
|
|
<meta name="author" content="">
|
|
|
|
<meta name="HandheldFriendly" content="True">
|
|
|
|
<meta name="MobileOptimized" content="320">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
|
|
<meta http-equiv="cleartype" content="on">
|
|
|
|
|
2013-05-19 12:04:20 +04:00
|
|
|
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lato:300,400,700">
|
|
|
|
<link rel="stylesheet" href="/core/admin/assets/css/screen.css">
|
2013-05-11 20:44:25 +04:00
|
|
|
<link rel="stylesheet" type="text/css" href="/core/admin/assets/lib/codemirror/codemirror.css"> <!-- TODO: Kill this - #29 -->
|
2013-05-13 21:25:16 +04:00
|
|
|
<link rel="stylesheet" type="text/css" href="/core/admin/assets/lib/icheck/css/icheck.css"> <!-- TODO: Kill this - #29 -->
|
2013-05-19 12:04:20 +04:00
|
|
|
{{{block "pageStyles"}}}
|
2013-05-11 20:44:25 +04:00
|
|
|
|
|
|
|
<script type="text/javascript" src="/core/admin/assets/lib/jquery/jquery.min.js"></script>
|
2013-05-19 12:04:20 +04:00
|
|
|
<script type="text/javascript" src="/core/admin/assets/lib/icheck/jquery.icheck.min.js"></script> <!-- The right place for this? -->
|
2013-05-11 20:44:25 +04:00
|
|
|
<script type="text/javascript" src="/core/admin/assets/js/toggle.js"></script>
|
|
|
|
<script type="text/javascript" src="/core/admin/assets/js/admin-ui-temp.js"></script>
|
2013-05-19 12:04:20 +04:00
|
|
|
{{{block "headScripts"}}}
|
2013-05-11 20:44:25 +04:00
|
|
|
</head>
|
|
|
|
<body class="{{bodyClass}}">
|
2013-05-19 15:19:39 +04:00
|
|
|
{{#unless hideNavbar}}
|
|
|
|
{{> navbar}}
|
|
|
|
{{/unless}}
|
2013-05-19 12:04:20 +04:00
|
|
|
|
|
|
|
<main role="main">
|
|
|
|
{{> flashes}}
|
|
|
|
|
|
|
|
{{{body}}}
|
|
|
|
</main>
|
|
|
|
|
|
|
|
{{{block "bodyScripts"}}}
|
2013-05-11 20:44:25 +04:00
|
|
|
</body>
|
|
|
|
</html>
|