-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (79 loc) · 3.09 KB
/
index.html
File metadata and controls
89 lines (79 loc) · 3.09 KB
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
<!DOCTYPE html>
<html>
<head>
<title>SILKNOW Data infrastructure</title>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/png" href="assets/silknowlogofavicon_small.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900' rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@3.x/css/materialdesignicons.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.css" rel="stylesheet">
<style>.v-main__wrap { display: flex; flex-direction: column; }</style>
</head>
<body>
<div id="app">
<v-app light>
<v-app-bar color="white" app flat="True" height="100">
<img src="assets/cropped-silknow-1.png" style="max-width: 100%;" />
</v-app-bar>
<v-main>
<section>
<v-parallax src="assets/hero.jpeg" height="400" />
</section>
<section class="flex-grow-1 d-flex">
<v-row align="center">
<v-col class="text-center" o>
<div class="my-2">
<v-btn dark large color="grey" href="https://data.silknow.org/sparql">SPARQL</v-btn>
</div>
</v-col>
<v-col class="text-center" o>
<div class="my-2">
<v-btn dark large color="grey" href="https://data.silknow.org/api/">API</v-btn>
</div>
</v-col>
<v-col class="text-center" o>
<div class="my-2">
<v-btn dark large color="grey" href="https://data.silknow.org/fct/">Facet Browser</v-btn>
</div>
</v-col>
<v-col class="text-center" o>
<div class="my-2">
<v-btn dark large color="grey" href="https://skosmos.silknow.org/thesaurus/">Thesaurus</v-btn>
</div>
</v-col>
<v-col class="text-center" o>
<div class="my-2">
<v-btn dark large color="grey" href="https://ontome.dataforhistory.org/profile/7#classes">Ontology
</v-btn>
</div>
</v-col>
</v-row>
</section>
<v-footer height="auto" color="grey" dark>
<v-layout flex justify-center align-center wrap py-5>
<a href="https://ec.europa.eu/" target="_blank" rel="noopener noreferrer">
<img src="assets/LOGO-CE_EN_quadri_LR.png" width="150" height="104" />
</a>
<v-flex dark ml-12 white--text xs3>
This project has received funding from the European Union’s Horizon 2020 research and innovation programme
under grant agreement No 769504.
</v-flex>
</v-layout>
</v-footer>
</v-main>
</v-app>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.js"></script>
<script>
new Vue({
el: '#app',
vuetify: new Vuetify(),
data() {
return {}
}
})
</script>
</body>
</html>