blob: f194f2ceb559169f271ff9d781fc97ce9e1ffb5a (
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
|
{% extends "base.html" %}
{# no special title for now #}
{# {% block title %}Perpetual Access to the Scholarly Record{% endblock %} #}
{% block extra_head %}
<link rel="canonical" href="https://{{ config.FATCAT_DOMAIN }}/">
{% endblock %}
{% block fullmain %}
<div class ="ui vertical inverted violet masthead center aligned segment" style="padding-top: 7em; padding-bottom: 10em;">
<div class="ui text container">
<h1 class="ui header inverted huge centered">
{{ _("Search Tens of Thousands of COVID-19 Research Papers and Reports") }}
</h1>
<br>
<form class="" action="{{ url_for("search.fulltext_search") }}" method="get" role="search" aria-label="papers" itemprop="potentialAction" itemscope itemtype="https://schema.org/SearchAction">
<meta itemprop="target" content="https://{{ config.FATCAT_DOMAIN }}/fulltext/search?q={q}"/>
<div class="ui form">
<div class="ui action input huge fluid">
<input type="text" placeholder="{{ _("by title, authors, identifiers...") }}" name="q" aria-label="search metadata" required itemprop="query-input">
<button class="ui green button">{{ _("Search") }}</button>
</div>
</div>
</form>
</div>
</div>
<div class="ui vertical stripe segment" style="padding-top: 2em; padding-bottom: 2em; background-color: #F5F5F5;">
<div class="ui text container" style="max-width: 800px!important;">
<p><b>
{{ _("This is a prototype full text search index of papers, reports,
datasets, and other research resources related to the COVID-19 crisis,
including public health responses to influenza pandemics more
generally.") }}
<a href="/about">{{ _("Read more...") }}</a>
</b>
</div>
</div>
<div class="ui vertical stripe segment" style="padding-top: 2em; padding-bottom: 2em;">
<div class="ui text container" style="max-width: 800px!important;">
<div class="ui centered grid">
<div class="row">
<div class="twelve wide column" style="font-size: 1.2rem;">
<p>{{ _("This service is hosted at") }}
<b><a href="https://archive.org">The Internet Archive</a></b>,
{{ _("a US non-profit dedicated to providing Universal Access to All Knowledge") }}.
<p>
{{ _("Metadata and content comes from the intersection of public curated COVID-19 publication lists (like the") }}
<a href="https://pages.semanticscholar.org/coronavirus-research">Allen Institute for AI CORD-19 corpus</a>
{{ _("and the") }} <a href="https://www.who.int/emergencies/diseases/novel-coronavirus-2019/global-research-on-novel-coronavirus-2019-ncov">WHO database of publications on coronavirus disease</a>)
{{ _("and the") }} <a href="https://fatcat.wiki">Fatcat</a>
{{ _("open catalog of research publications on the scholarly web") }}.
</div>
<div class="four wide column">
<img src="/static/ia_logo_text.png" width="140" alt="IA logo">
</div>
</div>
</div>
</div>
</div>
{% endblock %}
|