go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/kana-server/pkg/static/_views/header.html (about)

     1  <!--
     2  Copyright (c) 2023 - Present. Will Charczuk. All rights reserved.
     3  Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository.
     4  -->
     5  {{define "header"}}
     6  <!DOCTYPE html>
     7  <html lang="en">
     8  
     9  <head>
    10    <meta charset="utf-8">
    11    <title>Kana Quiz</title>
    12    <meta name="referrer" content="no-referrer" />
    13    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    14    <meta name="robots" content="noimageindex">
    15    <meta name="twitter:card" content="summary">
    16    <link rel="stylesheet" type="text/css" href="/static/css/normalize.css" />
    17    <link rel="stylesheet" type="text/css" href="/static/css/blueprint-icons.css" />
    18    <link rel="stylesheet" type="text/css" href="/static/css/blueprint.css" />
    19    <link rel="stylesheet" type="text/css" href="/static/css/skeleton.css" />
    20    <link rel="stylesheet" type="text/css" href="/static/css/site.css" />
    21  </head>
    22  
    23  <body>
    24    <nav class="bp3-navbar">
    25      <div class="twelve columns">
    26        <div class="bp3-navbar-group bp3-align-left">
    27          <div class="bp3-navbar-heading"><a class="bp3-minimal bp3-button" href="/home" title="Home">Kana Quiz</a></div>
    28        </div>
    29        <div class="bp3-navbar-group bp3-align-right">
    30          {{ if request_context.Session }}
    31          {{ $user := request_context.Session.State.User }}
    32          <a href="/home" class="bp3-button bp3-minimal bp3-icon-home" title="Home">Home</a>
    33          <span class="bp3-navbar-divider"></span>
    34          <a href="/quiz.new" class="bp3-button bp3-minimal bp3-intent-success bp3-icon-add" title="Start New Quiz"></a>
    35          <span class="bp3-navbar-divider"></span>
    36          <span class="bp3-navbar-item"><img class="nav-profile-picture" src="{{ $user.PictureURL }}"
    37              title="{{ $user.Email }}" /></span>
    38          <span class="bp3-navbar-divider"></span>
    39          <a href="/logout" class="bp3-button bp3-minimal bp3-intent-primary bp3-icon-log-out" title="Log Out"></a>
    40        </div>
    41        {{ else }}
    42        <a href="/login" class="bp3-button bp3-minimal bp3-intent-primary bp3-icon-log-in" title="Log In"></a>
    43        {{ end }}
    44      </div>
    45      </div>
    46    </nav>
    47    {{end}}