aboutsummaryrefslogtreecommitdiffstats
path: root/fatcat_scholar/templates/base.html
blob: a942915a5095e4debb7f16f2f9d753136d4bfbe9 (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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
<!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">
  {# no Javascript currently
  <script>
  /*
  TODO: audit this license statement

  @licstart  The following is the entire license notice for the JavaScript code in this page.

  Copyright (C) 2020 Internet Archive

  The JavaScript code in this page is free software: you can
  redistribute it and/or modify it under the terms of the GNU Affero
  General Public License as published by the Free Software
  Foundation, either version 3 of the License, or (at your option)
  any later version.  The code is distributed WITHOUT ANY WARRANTY;
  without even the implied warranty of MERCHANTABILITY or FITNESS
  FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.

  As additional permission under GNU AGPL version 3 section 7, you
  may distribute non-source (e.g., minimized or compacted) forms of
  that code without the copy of the GNU AGPL normally required by
  section 4, provided you include this license notice and a URL
  through which recipients can access the Corresponding Source.

  @licend  The above is the entire license notice for the JavaScript code in this page.
  */
  </script>
  #}
  <title>
    {%- if settings.SCHOLAR_ENV != "prod" -%}[{{ settings.SCHOLAR_ENV|upper }}] {% endif -%}
    {%- block title -%}scholar.archive.org{%- endblock %}
  </title>
  <link rel="stylesheet"
    href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.1/dist/semantic.min.css"
    type="text/css"
    crossorigin="anonymous">
  <style>
    {# bnewbold: accessibility/contrast #}
    a {
      color: #28629c;
    }
    .ui.basic.blue.label {
      color: #28629c!important;
      border-color: #28629c!important;
    }
    .ui.card .meta, .ui.cards>.card .meta {
      color: rgba(0,0,0,0.55);
    }

    {# bnewbold: fix light grey bars in header #}
    .ui.inverted.menu .item:before { background: none; }

    @media only screen and (max-width: 767px) {
      .mobile-hide { display: none !important; }
    }
    @media only screen and (min-width: 768px) {
      .mobile-only { display: none !important; }
    }
    @media only screen and (max-width: 991px) {
      .tablet-hide { display: none !important; }
    }
    @media only screen and (min-width: 992px) {
      .tablet-only { display: none !important; }
    }
    @media only screen and (min-width: 1200px) {
      .ui.container {
        font-size: 16px;
        line-height: 20px;
      }
      .ui.serp.card {
        max-width: 180px;
      }
      div.fulltext-link {
        width: 180px;
      }
      div.serp-hit-box {
        padding-left: 1.1em;
      }
    }

    {# for fulltext search result highlighting #}
    .search_highlights em {
      {# yellow #}
      {# background-color: #FFFFBB; #}
      font-style: normal;
      font-weight: bold;
    }

    .search_filters summary::marker {
      display: none;
    }
    .search_filters summary::-webkit-details-marker {
      display: none;
    }

    footer p a {
      color: rgba(255, 255, 255, 0.5);
    }
    footer p a:hover {
      color: rgba(255, 255, 255, 1.0);
      opacity: 1.0;
    }

    .ui.label.small {
      border-radius: 0;
    }

    .ui.card a:hover {
      opacity: 0.75;
    }

    .text-button {
      border: none;
      background-color: inherit;
      padding: 0;
      font-family: inherit;
      cursor: pointer;
      display: inline-block;
    }
  </style>
  <link rel="preload"
    href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin"
    as="style">
  <link rel="preload"
    href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.1/dist/themes/default/assets/fonts/icons.woff2"
    as="font"
    type="font/woff2"
    crossorigin="anonymous">
  <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" style="background-color: #fbbd08a6;" href="{{ lang_prefix }}/#alphanotice"><i>alpha</i></a>
    </span>

    <div class="right menu">
      <div class="ui simple dropdown item">
      <!-- language/translate SVG icon -->
      <img src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxNzkyIiB2aWV3Qm94PSIwIDAgMTc5MiAxNzkyIiB3aWR0aD0iMTc5MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNzgyIDEwNzhxLTEgMy0xMi41LS41dC0zMS41LTExLjVsLTIwLTlxLTQ0LTIwLTg3LTQ5LTctNS00MS0zMS41dC0zOC0yOC41cS02NyAxMDMtMTM0IDE4MS04MSA5NS0xMDUgMTEwLTQgMi0xOS41IDR0LTE4LjUgMHE2LTQgODItOTIgMjEtMjQgODUuNS0xMTV0NzguNS0xMThxMTctMzAgNTEtOTguNXQzNi03Ny41cS04LTEtMTEwIDMzLTggMi0yNy41IDcuNXQtMzQuNSA5LjUtMTcgNXEtMiAyLTIgMTAuNXQtMSA5LjVxLTUgMTAtMzEgMTUtMjMgNy00NyAwLTE4LTQtMjgtMjEtNC02LTUtMjMgNi0yIDI0LjUtNXQyOS41LTZxNTgtMTYgMTA1LTMyIDEwMC0zNSAxMDItMzUgMTAtMiA0My0xOS41dDQ0LTIxLjVxOS0zIDIxLjUtOHQxNC41LTUuNSA2IC41cTIgMTItMSAzMyAwIDItMTIuNSAyN3QtMjYuNSA1My41LTE3IDMzLjVxLTI1IDUwLTc3IDEzMWw2NCAyOHExMiA2IDc0LjUgMzJ0NjcuNSAyOHE0IDEgMTAuNSAyNS41dDQuNSAzMC41em0tMjA1LTQ4NnEzIDE1LTQgMjgtMTIgMjMtNTAgMzgtMzAgMTItNjAgMTItMjYtMy00OS0yNi0xNC0xNS0xOC00MWwxLTNxMyAzIDE5LjUgNXQyNi41IDAgNTgtMTZxMzYtMTIgNTUtMTQgMTcgMCAyMSAxN3ptNjk4IDEyOWw2MyAyMjctMTM5LTQyem0tMTEwOCA4MDBsNjk0LTIzMnYtMTAzMmwtNjk0IDIzM3YxMDMxem0xMjQxLTMxN2wxMDIgMzEtMTgxLTY1Ny0xMDAtMzEtMjE2IDUzNiAxMDIgMzEgNDUtMTEwIDIxMSA2NXptLTUwMy05NjJsNTczIDE4NHYtMzgwem0zMTEgMTMyM2wxNTggMTMtNTQgMTYwLTQwLTY2cS0xMzAgODMtMjc2IDEwOC01OCAxMi05MSAxMmgtODRxLTc5IDAtMTk5LjUtMzl0LTE4My41LTg1cS04LTctOC0xNiAwLTggNS0xMy41dDEzLTUuNXE0IDAgMTggNy41dDMwLjUgMTYuNSAyMC41IDExcTczIDM3IDE1OS41IDYxLjV0MTU3LjUgMjQuNXE5NSAwIDE2Ny0xNC41dDE1Ny01MC41cTE1LTcgMzAuNS0xNS41dDM0LTE5IDI4LjUtMTYuNXptNDQ4LTEwNzl2MTA3OWwtNzc0LTI0NnEtMTQgNi0zNzUgMTI3LjV0LTM2OCAxMjEuNXEtMTMgMC0xOC0xMyAwLTEtMS0zdi0xMDc4cTMtOSA0LTEwIDUtNiAyMC0xMSAxMDYtMzUgMTQ5LTUwdi0zODRsNTU4IDE5OHEyIDAgMTYwLjUtNTV0MzE2LTEwOC41IDE2MS41LTUzLjVxMjAgMCAyMCAyMXY0MTh6Ii8+PC9zdmc+"
      alt="{{ _("select language") }}" style="height: 1.5em; filter: invert(100%);">
      <i class="dropdown icon" style="margin-left: 0.2em;"></i>
        <div class="menu">
            {# TODO: as a dynamic array #}
            {# TODO: do url_for() here, with current endpoint (from request?) #}
            <a class="item" href="/en/">English</a>
            <a class="item" href="/de/">Deutsch</a>
            <a class="item" href="/zh/">中文</a>
            <a class="item" href="/ru/">Русский</a>
            <a class="item" href="/ar/">عَرَبِيّ</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" action="{{ lang_prefix }}/search" method="get" role="search" aria-label="papers" itemprop="potentialAction" itemscope itemtype="https://schema.org/SearchAction">
          <meta itemprop="target" content="https://{{ settings.SCHOLAR_DOMAIN }}/fulltext/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 metadata" 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 href="{{ lang_prefix }}/help" style="order: -1;">{{ _("User Guide") }}</a>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<main class="ui main container" style="min-height: 50vh;">
{% 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">
            <h3>Internet Archive</h3>
            <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="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" class="item">{{ _("Help") }}</a>
        </div>
      </nav>
    </div>
  </div>
</footer>

{# don't actually need Javascript! at least so far
<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"
  crossorigin="anonymous">
</script>
#}
<script>
// when search is submitted, have submit button animate
console.log("hi");
document.getElementById("search_form").onsubmit = function(){
  document.getElementById("search_submit_button").classList.add("loading");
};
</script>
{% block postscript %}{% endblock %}
</body>
</html>