<!doctype html>
<html>
  <head>
    <title><%= title %></title>
    <link href="/style.css" rel="stylesheet" type="text/css">
  </head>
  <body>
    <div class="right">
      <strong><a style="float:left;" href="/posts">All Posts</a></strong>
      <% if(user.username == "Guest") { %>
        Please <a href="/login">Login</a>
      <% } else { %>
        <% if (user.admin) { %><a href="/users">Edit Users</a><% } %>
        Welcome <%= user.username %>.  Not you? <a href="/logout">logout</a>
      <% } %>
    </div>
