cabmin
Version:
Simple control panel for Node.js based on OrangeBox
49 lines • 2.11 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cabmin - {% if page.title %}{{ page.title }}{% else %}{{ title }}{% endif %}</title>
<style type="text/css" >@import url("{{ staticUrl }}/css/style.css");</style>
<style type="text/css" >@import url("{{ staticUrl }}/css/auth.css");</style>
<script type="text/javascript"> window.baseUrl="{{ baseUrl }}"; window.staticUrl="{{ staticUrl }}"; </script>
<script src="{{ staticUrl }}/js/jquery-2.1.1.min.js"></script>
<script src="{{ staticUrl }}/js/jquery.checkbox.js"></script>
<script src="{{ staticUrl }}/js/common.js"></script>
<link rel="icon" type="image/ico" href="{{ staticUrl }}/favicon.ico">
<!--[if lt IE 9]>
<script src="{{ staticUrl }}/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="auth-wrap">
<div class="auth" align="left">
<div class="win">
<header class="noise">
<div class="body-max">
<a href="" class="logo">
<h1 title="# Cabmin"># <b>Cab</b>min</h1>
<small>Admin area for <b>{{ title }}</b></small>
</a>
{% if showDropMenu %}
<div class="btn-group right">
<span class="btn btn-primary"><i class="fa fa-user fa-fw "></i> {{ login }}</span>
<a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#">
<span class="fa fa-caret-down"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Forgot you password?</a></li>
<li><a href="{{ baseUrl }}/logout">Change account</a></li>
</ul>
</div>
{% endif %}
</div>
</header>
<main>
{% if page.title and page.showTitle %}<h1>{{ page.title }}</h1>{% endif %}
{{ data }}
</main>
<footer></footer>
</div>
</div>
</div>
</body>
</html>