blob: 3af1a8b7e2d96ae815ecd76549c23a3083dfd0b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
<% if (typeof refresh !== 'undefined' && refresh > 0) { %><meta http-equiv="refresh" content="<%= refresh %>"><% } %>
<link rel="icon" href="/images/rally-the-troops.png">
<link rel="stylesheet" href="/fonts/fonts.css">
<link rel="stylesheet" href="/style.css">
<title><%= title %></title>
</head>
<body>
<div class="header">
<div><a href="/"><img src="/images/rally-the-troops.svg" width="48" height="48"></a></div>
<div>
<span><a href="/about">About</a></span>
<%
if (user) {
%><span><a href="/profile">Profile (<%= user.name %>)</a></span><%
} else {
%><span><a href="/signup">Signup</a></span><%
%><span><a href="/login">Login</a></span><%
}
%>
</div>
</div>
<div class="main">
<h1><%= title %></h1>
<%
if (typeof message !== 'undefined' && message.length > 0) {
%><p class="error"><%= Array.isArray(message) ? message.join("\n") : message %></p><%
}
%>
|