31 lines
682 B
Handlebars
31 lines
682 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
{{#if title}}
|
|
<title>Icebox- {{title}}</title>
|
|
{{else}}
|
|
<title>Icebox</title>
|
|
{{/if}}
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="/css/style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="main" class="container-fluid">
|
|
{{> nav}}
|
|
<div style="height: 80px;"></div>
|
|
{{#if alert}}
|
|
{{> alert}}
|
|
{{/if}}
|
|
{{{body}}}
|
|
</div>
|
|
{{> footer}}
|
|
</body>
|
|
<script src="/js/bootstrap.min.js"></script>
|
|
</html>
|