summaryrefslogtreecommitdiff
path: root/views/header.ejs
blob: 66f0f2e688313553128ec692b5edb7d013f217f4 (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
33
34
35
36
<!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 %>">
<% } -%>
<title><%= title %></title>
<link rel="icon" href="/favicon.svg">
<link rel="stylesheet" href="/fonts/fonts.css">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<a href="/"><img src="/images/rally-the-troops.svg" width="48" height="48"></a>
<nav>
<a href="/about">About</a>
<a href="/forum">Forum</a>
<% if (user) { -%>
<% if (user.unread > 0) { -%>
<a href="/inbox">Inbox (<%= unread %>)</a>
<% } else { -%>
<a href="/inbox">Inbox</a>
<% } -%>
<a href="/profile">Profile (<%= user.name %>)</a>
<% } else { -%>
<a href="/signup">Signup</a>
<a href="/login">Login</a>
<% } -%>
</nav>
</header>
<article>
<h1><%= title %></h1>
<% if (typeof flash !== 'undefined' && flash.length > 0) { -%>
<p class="error"><%= flash %></p>
<% } -%>