mirror of
https://github.com/Mintplex-Labs/express-admin.git
synced 2026-08-24 11:52:52 -04:00
47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>{{string.logo}}</title>
|
|
<link rel="shortcut icon" href="{{root}}/favicon.ico" />
|
|
|
|
<link id="bootstrap" href="{{root}}{{libs.bootstrap}}" rel="stylesheet" type="text/css" media="all" />
|
|
{{>theme}}
|
|
|
|
{{#libs.external.css}}
|
|
<link href="{{.}}" rel="stylesheet" type="text/css" media="all" />
|
|
{{/libs.external.css}}
|
|
|
|
{{#libs.css}}
|
|
<link href="{{root}}{{.}}" rel="stylesheet" type="text/css" media="all" />
|
|
{{/libs.css}}
|
|
|
|
{{#libs.external.js}}
|
|
<script src="{{.}}" type="text/javascript" charset="utf-8"></script>
|
|
{{/libs.external.js}}
|
|
|
|
{{#libs.js}}
|
|
<script src="{{root}}{{.}}" type="text/javascript" charset="utf-8"></script>
|
|
{{/libs.js}}
|
|
</head>
|
|
<body id="express-admin" class="container">
|
|
|
|
<div id="wrapper">
|
|
{{>header}}
|
|
{{>layout}}
|
|
|
|
<section id="content">
|
|
{{>breadcrumbs}}
|
|
|
|
{{>content}}
|
|
</section>
|
|
|
|
<div id="footer-push"> </div>
|
|
</div>
|
|
<footer>
|
|
<p><small><a href="{{footer.url}}" target="_blank" class="text-muted">{{footer.text}}</a></small></p>
|
|
</footer>
|
|
</body>
|
|
</html>
|