2017-01-15 16:27:22 +01:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="de">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="initial-scale=1, minimum-scale=1" />
|
|
|
|
|
<title>TrsrDB<% if (my $t = title) { %>: <%= $t %><% } %></title>
|
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
|
|
|
href="/style.css" media="screen,projection">
|
|
|
|
|
% my $scripts = stash 'addScripts';
|
|
|
|
|
% for my $script ( @$scripts ) {
|
|
|
|
|
<script src="/scripts/<%= $script %>.js"></script>
|
|
|
|
|
% }
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
% if ( my $t = title ) {
|
|
|
|
|
<h1>Treasure DB: <%= $t %></h1>
|
|
|
|
|
% }
|
|
|
|
|
<%= content %>
|
|
|
|
|
|
2017-01-15 22:03:06 +01:00
|
|
|
|
<p style="text-align:center;"><a href="<%= url_for "home" %>">Back home – Account List</p>
|
2017-01-15 16:27:22 +01:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|