23 lines
621 B
Plaintext
23 lines
621 B
Plaintext
<!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 %>
|
||
|
||
<p style="text-align:center;"><a href="<%= url_for "home" %>">Back home – Account List</p>
|
||
</body>
|
||
</html>
|