summaryrefslogtreecommitdiff
path: root/views/partials/header.ejs
blob: 6cd7b2e874c492f3d466bdebf2778728d69a94c7 (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>
<title>bucky</title>
<link rel="stylesheet" href="/assets/css/bucky.css">
<meta name="_csrf" value="<%= csrfToken %>">
</head>
<body>

<h1><%= title %></h1>

<hr>

<% if (show_header) { %>
  <div id="menu">
    <span class="lastlog">
      <script class="template" type="text/html">
        <a href="/profile/{{username}}">{{username}}</a>
        [{{age}}]
      </script>
    </span>
    <span class="links">
      <a href="/index">home</a> |
      <a href="/search">search</a> |
      <a href="/post">post</a> |
      <a href="/mail">inbox</a> |
      <a href="/message">message</a> |
      <a href="/profile">profile</a> |
      <a href="/logout">logout</a>
    </span>
  </div>
<% } %>