|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Solid Resources Catalog</title> |
| 7 | + <script type="module" src='https://cdn.jsdelivr.net/npm/mashlib@latest/dist/mashlib.min.js'></script> |
| 8 | + <!-- <script type="module" src='./node_modules/mashlib/dist/mashlib.min.js'></script> --> |
| 9 | + <link rel="stylesheet" type="text/css" href="./viewer/viewer.css"> |
| 10 | + <link rel="stylesheet" type="text/css" href="./viewer/forms.css"> |
| 11 | + <link rel="icon" href="https://solidproject.org/assets/img/solid-emblem.svg" type="image/svg+xml"> |
| 12 | + <meta name="thumbnail" content="https://solidproject.org/assets/img/solid-emblem.svg"> |
| 13 | +</head> |
| 14 | +<body> |
| 15 | +<div id="main-content"> |
| 16 | + <div class="sol-header"> |
| 17 | + <img src="./assets/logo.svg" class="logo"> |
| 18 | + <span class="sol-header-content"> |
| 19 | + <b style="display:inline-block;padding-left:1rem;padding-right:1rem;"> Solid Resources Catalog </b> |
| 20 | + <sol-catalog-search class="search-input"><input type="text"> |
| 21 | + <button class="search-button">search</button></sol-catalog-search> |
| 22 | + <button class="keyword-index-button">keyword index</button> |
| 23 | + <button class="new-record-button">new record</button> |
| 24 | + <button class="about-button" source="./catalog-about.html">about</button> |
| 25 | + </span> |
| 26 | + </div> |
| 27 | + |
| 28 | + <div id="main"> |
| 29 | + <div id="left-column"> </div> |
| 30 | + <div id="right-column"> |
| 31 | + <div id="right-top"></div> |
| 32 | + <div id="right-bottom"></div> |
| 33 | + </div> |
| 34 | + </div> |
| 35 | +</div> |
| 36 | + |
| 37 | +<div id="forms-area" style="display:none"> |
| 38 | + <div id="menubar"></div> |
| 39 | + <form id="forms-record" class="record"></form> |
| 40 | +</div> |
| 41 | + |
| 42 | +<div id="help" style="display:none"> |
| 43 | +<button style="text-align:right" onclick="document.body.classList.remove('showHelp')"><<</button> |
| 44 | +<h1 style="font-size:1.4em !important">Solid Resources Catalog</h1> |
| 45 | + |
| 46 | +<p>This catalog is a work in progress and not all data has been recently updated. Please help by updataing records for yourself, your organization, and your projects.</p> |
| 47 | + |
| 48 | +<p>There are three main ways to navigate the catalog:</p> |
| 49 | + |
| 50 | +<ul> |
| 51 | +<li> Use the list of resource types at the left of the screenb |
| 52 | +<li> Use the full text searchbar at the top of the screen |
| 53 | +<li> Use the keyword index at the top of the screen |
| 54 | +<li> Navigate to a record and jump to related records |
| 55 | +</ul> |
| 56 | + |
| 57 | +<p>If you do not find a record for yourself or your projects, use the *new record* button at the top of the screen to create one.</p> |
| 58 | + |
| 59 | +<p>To read more about the catalog and other viewers for it, see <a href="https://github.com/solid/catalog">the gitihub repository</a> and/or catch me (@jeff-zucker) on matrix.</p> |
| 60 | +</div> |
| 61 | + |
| 62 | + <script> |
| 63 | + var sh; |
| 64 | + </script> |
| 65 | + <script type="module"> |
| 66 | + import {viewer,showSubtypes} from './viewer/viewer.js'; |
| 67 | + document.addEventListener('DOMContentLoaded', async () => { |
| 68 | + sh = showSubtypes; |
| 69 | + await viewer(); |
| 70 | + }); |
| 71 | + </script> |
| 72 | + |
| 73 | +</body> |
| 74 | +</html> |
| 75 | + |
| 76 | + |
0 commit comments