This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
node-task/views/layout.dust

31 lines
670 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>{title}</title>
<link rel="stylesheet" href="/css/ink.min.css" />
<link rel="stylesheet" href="/css/ink-flex.min.css" />
<link rel="stylesheet" href="/css/font-awesome.min.css" />
</head>
<body>
<header class="ink-grid">
<h1>{title}</h1>
<nav class="ink-navigation">
<ul class="menu horizontal">
<li><a href="/logout">Logout</a></li>
</ul>
</nav>
</header>
<main class="ink-grid">
{+content}
This is the base content.
{/content}
</main>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/js/native.history.js"></script>
</body>
<!--
{session}
-->
</html>