Skip to content

Commit 77c2894

Browse files
committed
Created an initial index.html for the table
1 parent 44fd943 commit 77c2894

17 files changed

+38
-2
lines changed

index.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Mapping Commons</title>
6+
<script src="https://unpkg.com/vue"></script>
7+
<script src="./table-component/dist/mapping-commons-table.js"></script>
8+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
9+
</head>
10+
<body>
11+
12+
<div class="jumbotron">
13+
<h1>Mapping Commons</h1>
14+
15+
<div>
16+
Mapping Commons pulls together mappings from various sources with the goal of
17+
offering them as simple to read, well provenanced TSV files in the
18+
<a href="https://github.com/mapping-commons/SSSOM/blob/master/SSSOM.md">SSSOM format</a>.
19+
At first, the effort will focus on biomedical ontologies and controlled vocabularies,
20+
see for example the
21+
<a href="https://github.com/mapping-commons/mh_mapping_initiative">Mouse-Human Ontology Mapping Effort</a>.
22+
The initiative was founded early 2021.
23+
</div>
24+
25+
<div class="mt-4">
26+
If you want to contribute mappings or have questions, please use the
27+
<a href="https://github.com/mapping-commons/mapping-commons.github.io/issues">issue tracker</a>.
28+
</div>
29+
</div>
30+
31+
32+
<mapping-commons-table></mapping-commons-table>
33+
34+
35+
</body>
36+
</html>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ npm install
1010
npm run serve
1111
```
1212

13-
### Compiles and minifies for production
13+
### Builds web componennt
1414
```
15-
npm run build
15+
npm run build -- --target wc --name mapping-commons-table src/App.vue
1616
```
1717

1818
### Lints and fixes files
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)