<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >
<head>
<title>
% if (stash 'title') {
<%= stash('title') %>
% }
<%= $site_title %>
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
%= stylesheet '/css/bootstrap.css', rel => 'stylesheet', media => 'screen';
%= javascript '/js/jquery-1.9.1.js';
%= javascript '/js/bootstrap.js';
<link rel="shortcut icon" href="<%= url_for('/webdbviewer-favicon.png') %>" type="image/png" >
%= stylesheet begin
h1 {
text-align:center;
}
.container {
min-height:400px;
}
.footer {
margin-bottom:20px;
heigth:50px;
}
% end
</head>
<body>
<div class="page-header">
<h1><a href="<%= url_for($sprefix ? $sprefix : '/') %>"><%= $site_title %></a></h1>
</div>
<div class="container">
%= content;
</div>
<hr>
<div class="text-center footer">
<a href="<%= $footer_link %>">
<%= $footer_text %>
</a>
</div>
</body>
</html>