outer-header.ejs 1.29 KB
Newer Older
1
2
3
4
5
6
7
8
9
<!doctype html>
<html class="no-js">
  <head>
    <meta charset="utf-8">
    <title>Spacedeck Open</title>
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
10
11
    <link href="<%= config.endpoint %>/images/favicon.png" rel="icon" type="image/x-icon" />
    <link rel="stylesheet" href="<%= config.endpoint %>/stylesheets/style.css">
12
13
14
15
  </head>
  <body>
    <header id="landing-header" class="header">
      <div class="header-left">
16
        <a class="btn btn-transparent btn-nude" href="<%= config.endpoint %>/"><img src="<%= config.endpoint %>/images/sd6-logo-black.svg" width="190"></a>
17
18
19
20
      </div>

      <div class="header-right pull-right">
        <% if (!user) { %>
21
          <a class="btn btn-md btn-dark btn-round" href="<%= config.endpoint %>/login"><%=__("login")%></a>
22
        <% } else { %>
23
24
          <a class="btn btn-md btn-dark btn-round" href="<%= config.endpoint %>/spaces"><%=__("spaces")%></a>
          <a class="btn btn-md btn-dark btn-round" href="<%= config.endpoint %>/logout"><%=__("logout")%></a>
25
26
27
28
        <% } %>

      </div>
    </header>