Skip to content

Commit 6ba2b81

Browse files
committed
about.html
1 parent 147961d commit 6ba2b81

3 files changed

Lines changed: 100 additions & 1 deletion

File tree

docs/catalog/about.html

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>About FAIR-Reserch-Object</title>
6+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
7+
<link rel="stylesheet" href="styles.css">
8+
</head>
9+
<style>
10+
table.outer {
11+
width: 100%;
12+
border-collapse: collapse;
13+
border: 2px solid #444;
14+
}
15+
table.outer th,
16+
table.outer td {
17+
padding: 8px;
18+
vertical-align: top;
19+
border: 1px solid #444;
20+
}
21+
table.outer td:first-child {
22+
min-width: 300px;
23+
}
24+
25+
table.inner {
26+
border-collapse: collapse;
27+
width: 100%;
28+
}
29+
table.inner td {
30+
padding: 4px;
31+
border: none;
32+
}
33+
34+
</style>
35+
<body style="position: relative; min-height: 100vh; padding-top: 60px;">
36+
<button id="btn_back"
37+
type="button"
38+
class="btn btn-primary"
39+
onclick="window.location.href='catalog.html#test';"
40+
style="position: absolute; top: 10px; right: 10px;">
41+
Back
42+
</button>
43+
<section style="max-width: 800px; margin: auto; line-height: 1.6;">
44+
<h1>About FAIR-Reserch-Object (FAIROS)</h1>
45+
46+
<p>
47+
Tool to calculate the FAIRness of
48+
<a href="https://www.researchobject.org/" target="_blank">Research Objects</a>,
49+
serialized as
50+
<a href="https://www.researchobject.org/ro-crate/" target="_blank">RO-Crates</a>.
51+
</p>
52+
<p>
53+
FAIROS is a framework designed to evaluate the <strong>FAIRness</strong> of
54+
<a href="https://www.researchobject.org/" target="_blank">Research Objects (ROs)</a>,
55+
which are complex aggregations of data, software, and metadata. It provides:
56+
<ul>
57+
<li>Two scoring approaches to assess the FAIRness of an RO.</li>
58+
<li>An initial implementation of these methods within the FAIROS framework.</li>
59+
<li>A clear, explanatory approach to visualize the obtained scores.</li>
60+
</ul>
61+
The framework was validated on a collection of 165 ROs, highlighting strengths and limitations of different scoring systems.
62+
</p>
63+
<p>More information on FAIROS is available here: <a href="https://zenodo.org/records/7795727" target="_blank">10.5281/zenodo.7795727</a></p>
64+
65+
<h2>Authors & Maintainers</h2>
66+
<p>
67+
Daniel Garijo (OEG‑UPM)<br>
68+
Esteban González (OEG‑UPM)<br>
69+
Alejandro Benítez (OEG‑UPM)<br>
70+
</p>
71+
72+
<h2>Citing FAIROs</h2>
73+
<p>If you use FAIROs, please refer to our TPDL publication:</p>
74+
75+
<pre><code>@inproceedings{10.1007/978-3-031-16802-4_6,
76+
author = {Gonz{\'a}lez, Esteban and Ben{\'i}tez, Alejandro and Garijo, Daniel},
77+
editor = {Silvello, Gianmaria and Corcho, Oscar and Manghi, Paolo and Di Nunzio, Giorgio Maria and Golub, Koraljka and Ferro, Nicola and Poggi, Antonella},
78+
title = {FAIROs: Towards FAIR Assessment in Research Objects},
79+
booktitle = {Linking Theory and Practice of Digital Libraries},
80+
year = {2022},
81+
publisher = {Springer International Publishing},
82+
address = {Cham},
83+
pages = {68--80},
84+
isbn = {978-3-031-16802-4},
85+
doi = {https://doi.org/10.1007/978-3-031-16802-4_6}
86+
}</code></pre>
87+
<h2>More information</h2>
88+
<p>Explore the project on <a href="https://github.com/oeg-upm/FAIR-Research-Object" target="_blank">GitHub</a> or visit the <a href="https://oeg.fi.upm.es" target="_blank">OEG‑UPM homepage</a>.</p>
89+
</section>
90+
</body>
91+
</html>

docs/catalog/catalog.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,10 @@
180180
showSection("#benchmark");
181181
highlightButton("#btn_benchmark");
182182
});
183+
184+
$("#btn_about").click(function(){
185+
window.location.href = 'about.html';
186+
});
183187
});
184188

185189
</script>

docs/catalog/scripts/templates/template_catalog.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,12 @@
180180
showSection("#benchmark");
181181
highlightButton("#btn_benchmark");
182182
});
183+
184+
$("#btn_about").click(function(){
185+
window.location.href = 'about.html';
186+
});
183187
});
184-
188+
185189
</script>
186190
</head>
187191
<body>

0 commit comments

Comments
 (0)