blob: 2bc5ad8a9f4d08980c52e4287d6a963b997e4181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!doctype html>
<html>
<head>
<title><% site_name %></title>
<link rel="stylesheet" type="text/css" href="<% css_url %>">
</head>
<body>
<div class="login_logout">
<% IF not session.logged_in %>
<a href="<% login_url %>">log in</a>
<% ELSE %>
<a href="<% logout_url %>">log out</a>
<% END %>
</div>
<div class="page">
<h1><% site_name %></h1>
<% IF msg %>
<div class="flash"> <% msg %> </div>
<% END %>
<% content %>
</div>
</body>
</html>
|