aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat/templates/base.html
blob: 838e795db53127900a4df47147d3eb6d64110e38 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en" style="position: relative; min-height: 100%; height: auto;">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width">

  <title>{% block title %}fatcat!{% endblock %}</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.3.2/dist/semantic.min.css">
  <script
    src="https://code.jquery.com/jquery-3.1.1.min.js"
    integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
    crossorigin="anonymous"></script>
  <script src="https://cdn.jsdelivr.net/npm/semantic-ui@2.3.2/dist/semantic.min.js"></script>

</head>
<body style="margin-bottom: 100px; height: auto;">

<header class="ui fixed inverted menu">
  <div class="ui container">
    <a href="/" class="header item">
      <!-- <img class="logo" src="assets/images/logo.png"> -->
      fatcat!
    </a>
    <a href="/about" class="item">About</a>
    <a href="https://guide.{{ config.FATCAT_DOMAIN }}/" class="item">Guide</a>
    <div class="right menu">
      <div class="item">
        <form class="" role="search" action="/release/search" method="get">
          <div class="ui transparent inverted icon input">
            <i class="search icon"></i>
            <input type="text" placeholder="Search..." name="q">
          </div>
        </form>
      </div>
      <div class="ui simple dropdown item">
      demo-user <i class="dropdown icon"></i>
        <div class="menu">
          <a class="item" href="{# /editgroup/current #}#"><i class="edit icon"></i>Edits in Progress</a>
          <a class="item" href="/editor/aaaaaaaaaaaabkvkaaaaaaaaae/changelog"><i class="history icon"></i>History</a>
          <div class="divider"></div>
          <a class="item" href="/editor/aaaaaaaaaaaabkvkaaaaaaaaae"><i class="user icon"></i>Account</a>
          <a class="item" href="{# /logout #}#"><i class="sign out icon"></i>Logout</a>
        </div>
      </div>

    </div>
  </div>
</header>

<!-- 4em top margin is "enough" -->
<main class="ui main container" style="margin-top: 6em; margin-bottom: 2em;">
{% block fullbody %}
  <div class="ui container text">
    {% block body %}Nothing to see here.{% endblock %}
  </div>
{% endblock %}
</main>


<footer class="ui inverted vertical footer segment" style="margin-top: 2em; padding-top: 2em; padding-bottom:2em; position: absolute; bottom: 0px; width: 100%;">
  <div class="ui center aligned container">
    <div class="ui horizontal inverted small divided link list">
      <a class="item" href="/">fatcat!</a>
      <a class="item" href="/about">About</a>
      <a class="item" href="https://guide.{{ config.FATCAT_DOMAIN }}/Sources</a>
      <a class="item" href="#TODO">Status</a>
      <a class="item" href="https://guide.{{ config.FATCAT_DOMAIN }}/bulk_exports.html">Bulk Exports</a>
      <a class="item" href="https://git.bnewbold.net/fatcat/">Source Code (<code>{{ config.GIT_REVISION.decode() }}</code>)</a>
    </div>
  </div>
</footer>

{% block postscript %}{% endblock %}

</body>
</html>