aboutsummaryrefslogtreecommitdiffstats
path: root/fatcat_scholar/templates/base.html
blob: 2dd26434a4a147f97dda3a5dfff30d3a893c10b4 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="{{ locale or 'en' }}" style="position: relative; min-height: 100%; height: auto;" {% if locale in ['ar'] %}dir="rtl"{% endif %}>
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="referrer" content="origin-when-cross-origin">
  {% if settings.ONION_DOMAIN %}
    <meta http-equiv="onion-location" content="//{{ settings.ONION_DOMAIN }}">
  {%- endif %}
  <title>
    {%- if settings.SCHOLAR_ENV != "prod" -%}[{{ settings.SCHOLAR_ENV|upper }}] {% endif -%}
    {%- block title -%}{% trans %}Internet Archive Scholar{% endtrans %}{%- endblock %}
  </title>
  <link rel="stylesheet"
    href="/static/scholar-semantic-ui.v2.4.2.min.css"
    type="text/css">
  <link rel="stylesheet"
    href="/static/scholar.css"
    type="text/css">
  <style>
    {# locale specific CSS hacks (mostly RTL fixes) #}
    {% if locale in ['ar'] %}
    .ui.divided.grid:not([class*="vertically divided"])>.column:not(.row), .ui.divided.grid:not([class*="vertically divided"])>.row>.column {
      box-shadow: 1px 0 0 0 rgba(34,36,38,.15);
    }
    .ui.divided.grid:not([class*="vertically divided"])>.column:first-child, .ui.divided.grid:not([class*="vertically divided"])>.row>.column:first-child {
      box-shadow: none;
    }
    .ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row), .ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column {
      box-shadow: 1px 0 0 0 rgba(255,255,255,.1);
    }
    {# search query box right edge #}
    .ui.action.input:not([class*="left action"]) > input {
      border-right-color: #999!important;
    }

    .filter-bar .text-button {
      left: 0.9em;
      right: auto;
    }
    .filter-bar .filter-label {
      left: 0.9em;
      right: auto;
    }
    .ui.labeled.icon.button.serp-button .menu.fulltext-thumbnail {
      left: auto;
      right: calc(-100% - 1em);
    }
    {% endif %}
  </style>
  <link rel="icon" 
    type="image/x-icon" 
    href="/static/ia-favicon.ico">
  {% block extra_head %}{% endblock %}
</head>

<body>
<nav class="ui inverted menu" style="margin: 0;" dir="ltr">
  <div class="ui container">
    {% if settings.SCHOLAR_ENV != "prod" %}
      <div class="ui left corner {% if settings.SCHOLAR_ENV == "qa" %}orange{% else %}pink{% endif %} small label">
        <div data-tooltip="[{{ settings.SCHOLAR_ENV|upper }}] instance" data-position="bottom left">
          <i class="ui cogs icon"></i>
        </div>
      </div>
    {% endif %}
    <a href="https://archive.org/" class="header item">
      <img class="logo" src="/static/ia-logo.svg" style="width: 20px;" alt="">
      <img class="mobile-hide" src="/static/ia-wordmark.svg" style="margin-left: 10px; width: 180px;" alt="Internet Archive">
    </a>
    <span style="margin-top: 0.5em;">
      <a class="ui grey label" href="{{ lang_prefix }}/help#bugs"><i>alpha</i></a>
    </span>

    <div class="right menu">
      <div class="ui simple dropdown item translate-dropdown" aria-expanded="false" role="menu" aria-controls="language_menu" title="{{ _('language selection menu') }}">
        <div class="translate-icon"></div>
        <i class="dropdown icon" style="margin-left: 0.2em;"></i>
        <div id="language_menu" class="menu">
            {# TODO: as a dynamic array #}
            {# TODO: do url_for() here, with current endpoint (from request?) #}
            <a role="menuitem" class="item" href="/en/">English</a>
            <a role="menuitem" class="item" href="/ar/">عَرَبِيّ</a>
            <a role="menuitem" class="item" href="/de/">Deutsch</a>
            <a role="menuitem" class="item" href="/es/">Español</a>
            <a role="menuitem" class="item" href="/fr/">Français</a>
            <a role="menuitem" class="item" href="/hr/">Hrvatski</a>
            <a role="menuitem" class="item" href="/nb/">Norwegian Bokmål</a>
            <a role="menuitem" class="item" href="/ru/">Русский</a>
            <a role="menuitem" class="item" href="/zh/">中文</a>
            <div class="divider"></div>
            <a class="item" href="https://hosted.weblate.org/projects/internetarchive/fatcat-scholar/">{% trans %}Contribute to translations{% endtrans %}</a>
        </div>
      </div>
    </div>
  </div>
</nav>

{% block fullbody %}
<div class="ui vertical stripe segment" style="background-color: #dedede;">
  <div class="ui container" style="padding-top: 1em; padding-bottom: 0; padding-left: 0; padding-right: 0;">
    <div class="ui equal height stackable grid">
      <div class="ui four wide column" style="padding-bottom: 0;">
        <div style="display: flex; justify-content: center; align-items: center; height: 100%; width: 100%;">
          <a href="{{ lang_prefix }}/">
            <img src="/static/scholar-vaporwave-logo-small.png" alt="Internet Archive Scholar" style="width: 200px; margin-top: -1.5em;">
          </a>
        </div>
      </div>
      <div class="ui twelve wide column">
        <form class="" id="search_form" name="search_form" action="{{ lang_prefix }}/search" method="get" role="search" itemprop="potentialAction" itemscope itemtype="https://schema.org/SearchAction">
          <meta itemprop="target" content="/search?q={q}"/>
          <div class="ui form">
            <div class="ui action input large fluid">
              <input type="search" placeholder="{{ _("by title, authors, keywords...") }}" name="q" aria-label="{{ _('search for papers') }}" required itemprop="query-input" style="border-radius: 0; border: 1px #999 solid;" {% if query and query.q %}value="{{ query.q }}"{% endif %}>
              <button id="search_submit_button" class="ui green button" style="border-radius: 0; background-color: #44a25a; font-size: 1.2rem;">{{ _("Search") }}</button>
            </div>
          </div>
        </form>
        <div style="display: flex; width: 100%; justify-content: space-between; padding-top: 0.5em;">
          <div></div>
          <div>
            <a rel="help" href="{{ lang_prefix }}/help" style="order: -1;">{{ _("User Guide") }}</a>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<main class="ui main container" style="min-height: calc(100vh - 30em);">
{% block fullmain %}
  <div class="ui container text" style="margin-top: 2em;">
    {% block main %}Nothing to see here.{% endblock %}
  </div>
{% endblock %}
</main>
{% endblock %}

<footer class="ui inverted vertical footer segment" style="padding: 4em 0em; margin-top: 3em; width: 100%;">
  <div class="ui container">
    <div class="ui stackable mobile reversed inverted divided equal height grid">
      <nav class="nine wide column">
        <div class="ui grid">
          <div class="tablet-hide two wide column" style="padding-top: 4em; padding-right: 0;">
            <img class="logo" src="/static/ia-logo.svg" alt="" style="width: 100%; opacity: 0.5;">
          </div>
          <div class="one wide column computer only"></div>
          <div class="thirteen wide twelve wide computer column">
            <h4 style="font-size: 1.28571429rem;">Internet Archive</h4>
            <p style="color: rgba(255, 255, 255, 0.5);">
            {% trans %}We are a US 501(c)(3) non-profit library, building a global archive of Internet sites and other cultural artifacts in digital form.{% endtrans %}

            {% trans trimmed wayback='<a target="_blank" rel="noopener" href="https://web.archive.org">The Wayback Machine</a>'|safe,
                archive_org = '<a target="_blank" rel="noopener" href="https://archive.org">archive.org</a>'|safe,
                openlibrary = '<a target="_blank" rel="noopener" href="https://openlibrary.org">Open Library</a>'|safe,
                archive_it = '<a target="_blank" rel="noopener" href="https://archive-it.org">Archive-It</a>'|safe %}
              Other projects include {{ wayback }}, {{ archive_org }}, {{ openlibrary }}, and {{ archive_it }}.
            {% endtrans %}
            <div class="ui horizontal inverted link list">
              <a class="item" target="_blank" rel="noopener" href="https://archive.org/about/">{{ _("About Us") }}</a>
              <a class="item" target="_blank" rel="noopener" href="https://archive.org/about/contact.php">{{ _("Contact Us") }}</a>
              <a class="item" target="_blank" rel="noopener" href="https://archive.org/about/terms.php">{{ _("Policies") }}</a>
              <a class="item" target="_blank" rel="noopener" href="https://archive.org/donate">{{ _("Donate") }}</a>
            </div>
          </div>
        </div>
      </nav>
      <nav class="three wide column">
        <h4 class="ui inverted header">{% trans %}Open Infrastructure{% endtrans %}</h4>
        <div class="ui inverted link list">
          <a target="_blank" rel="noopener" href="https://fatcat.wiki" class="item">{{ _("Editable Catalog (Fatcat)") }}</a>
          <a target="_blank" rel="noopener" href="https://guide.fatcat.wiki" class="item">{{ _("Contribute") }}</a>
          <a target="_blank" rel="noopener" href="/api/redoc" class="item">{{ _("Search API") }}</a>
          <a target="_blank" rel="noopener noreferrer" href="https://status.fatcat.wiki" class="item">{{ _("Service Status") }}</a>
          <a target="_blank" rel="external noopener noreferrer" href="https://github.com/internetarchive/fatcat-scholar" class="item">{{ _("Source Code") }}</a>
        </div>
      </nav>
      <nav class="three wide column">
        <h4 class="ui inverted header">scholar.archive.org</h4>
        <div class="ui inverted link list">
          <a href="{{ lang_prefix }}/about#howitworks" class="item">{{ _("How It Works") }}</a>
          <a href="{{ lang_prefix }}/about#sources" class="item">{{ _("Content Sources") }}</a>
          <a href="{{ lang_prefix }}/about#tdm" class="item">{{ _("Text and Data Mining") }}</a>
          <a href="{{ lang_prefix }}/help" rel="help" class="item">{{ _("Help") }}</a>
        </div>
      </nav>
    </div>
  </div>
</footer>

<script>
/* when search is submitted, have submit button animate */
document.getElementById("search_form").onsubmit = function(){
  document.getElementById("search_submit_button").classList.add("loading");
};
</script>
{% if settings.ENABLE_GOATCOUNTER -%}
  {# for local testing: <script>window.goatcounter = {allow_local: true};</script> #}
  <script>
    window.goatcounter = {
        /* title leaks search query, so don't report it */
        title: "",
        {# to allow localhost connections (dev) to be colected, set: allow_local: true #}
    };
  </script>
  <script data-goatcounter="{{ settings.GOATCOUNTER_ENDPOINT }}" async src="{{ settings.GOATCOUNTER_SCRIPT_URL }}"></script>
{%- endif %}
{% block postscript %}{% endblock %}
</body>
</html>