Skip to content

Commit

Permalink
feat:RO-Crate Dataset-entity (#370)
Browse files Browse the repository at this point in the history
Co-authored-by: Salihu Baba-saliu <salihubaba-saliu@Salihus-MacBook-Pro.local>
  • Loading branch information
sivangbagri and Salihu Baba-saliu authored Nov 1, 2024
1 parent c868d4b commit a664ba5
Show file tree
Hide file tree
Showing 6 changed files with 537 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,5 @@ yarn-error.log*

# vercel
.vercel

.idea
27 changes: 27 additions & 0 deletions packages/ecc-client-elixir-ro-crate/demo/about/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<style>
body {
background: #fafafa;
}
</style>
</head>
<title>ecc-client-elixir-ro-crate</title>
<body>
<div id="demo"></div>

<script type="module">
import { html, render } from "lit";
import "../../dist/components/about/index.js";

render(
html`<ecc-client-elixir-ro-crate-about
/>`,
document.querySelector("#demo")
);
</script>
</body>
</html>
19 changes: 19 additions & 0 deletions packages/ecc-client-elixir-ro-crate/demo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<style>
body {
background: #f5f5f5;
}
</style>
<title>ecc-client-elixir-ro-crate</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="p-10">
<a href="./about" class="text-blue-500">About</a>
<br />
</div>
</body>
</html>
Loading

0 comments on commit a664ba5

Please sign in to comment.