-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_tools.php
104 lines (88 loc) · 2.81 KB
/
_tools.php
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
<?php
/**
* @file _home.php
* @brief module for the home page.
* This displays the four boxes witht he names of the tools.
*
*
* @author Nathalie Castells
* @date 9/27/2018
*/
?>
<a name="tools" id="tools"></a>
<div class="row p-3 m-3">
<h2>e-RA tools</h2>
</div>
<div id="rowCards" class="row mx-0 p-2">
<!--
<div class="col-sm-12 col-md-6 col-lg-6 col-xl-3 mb-3">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">e-RAsearch</h5>
<p class="card-text small">Find out which datasets are most suited
to your research using e-RAsearch.</p>
</div>
<div class="card-footer border-top-0">
<a href="e-RAsearch.php" class="btn btn-info">e-RAsearch <i
class="fa fa-search"></i>
</a>
</div>
</div>
</div>
-->
<div class="col-sm-12 col-md-4 col-lg-4 col-xl-4 mb-3">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">e-RAdata</h5>
<p class="card-text small">
Access the e-RA database using the Data Extraction Tool. Contact
the <a href="mailto:[email protected]" target="_blank">e-RA Data
Curators</a> for access.
</p>
</div>
<div class="card-footer border-top-0">
<a
href="http://www3.rothamsted.ac.uk/cdera/extract/pages/data_extraction_prototype6.html"
class="btn btn-info">e-RAdata <i class="fa fa-list-alt"></i></a>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-4 col-xl-4 mb-3">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">e-RApubs</h5>
<p class="card-text small">Search e-RA publications database for
publications which have used the Rothamsted Long-term Experiments.</p>
</div>
<div class="card-footer border-top-0">
<a href="e-RApubs.php" class="btn btn-info">e-RApubs <i
class="fa fa-mortar-board"></i></a>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-4 col-xl-4 mb-3">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">e-RAdoc</h5>
<p class="card-text small">Access the e-RA scanned document archive,
including annual reports, annual yield books, maps and other
documents relating to the Long-Term Experiments.</p>
</div>
<div class="card-footer border-top-0">
<a target="_blank" href="https://www.era.rothamsted.ac.uk/eradoc/"
class="btn btn-info">e-RAdoc <i class="fa fa-book"></i></a>
</div>
</div>
</div>
</div>
<div class="jumbotron bg-lighter p-3 m-3">
<p class="lead">
For further information and assistance, please contact the e-RA
curators, Sarah Perryman and Margaret Glendining using the e-RA email
address: <a href="mailto:[email protected]">[email protected]</a>
</p>
<p class="lead">
<a class="btn btn-primary btn-lg" href="mailto:[email protected]"
role="button">Contact e-RA</a>
</p>
</div>