Skip to content

Commit a664ba5

Browse files
sivangbagriSalihu Baba-saliu
andauthored
feat:RO-Crate Dataset-entity (#370)
Co-authored-by: Salihu Baba-saliu <salihubaba-saliu@Salihus-MacBook-Pro.local>
1 parent c868d4b commit a664ba5

6 files changed

Lines changed: 537 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,5 @@ yarn-error.log*
3535

3636
# vercel
3737
.vercel
38+
39+
.idea
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en-GB">
3+
<head>
4+
<meta charset="utf-8" />
5+
<style>
6+
body {
7+
background: #fafafa;
8+
}
9+
</style>
10+
</head>
11+
<title>ecc-client-elixir-ro-crate</title>
12+
<body>
13+
<div id="demo"></div>
14+
15+
<script type="module">
16+
import { html, render } from "lit";
17+
import "../../dist/components/about/index.js";
18+
19+
render(
20+
html`<ecc-client-elixir-ro-crate-about
21+
22+
/>`,
23+
document.querySelector("#demo")
24+
);
25+
</script>
26+
</body>
27+
</html>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en-GB">
3+
<head>
4+
<meta charset="utf-8" />
5+
<style>
6+
body {
7+
background: #f5f5f5;
8+
}
9+
</style>
10+
<title>ecc-client-elixir-ro-crate</title>
11+
<script src="https://cdn.tailwindcss.com"></script>
12+
</head>
13+
<body>
14+
<div class="p-10">
15+
<a href="./about" class="text-blue-500">About</a>
16+
<br />
17+
</div>
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)