2024-02-11 14:10:24 +11:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
|
|
|
<meta content="utf-8" http-equiv="encoding">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
|
|
|
<title>Who's using it - Library Map</title>
|
|
|
|
<link rel="shortcut icon" href="/logo.svg" type="image/x-icon">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
2024-03-31 09:26:54 +11:00
|
|
|
<script defer data-domain="librarymap.hugh.run" src="https://analytics.hugh.run/js/script.js"></script>
|
2024-02-11 14:10:24 +11:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<section id="title">
|
|
|
|
<a href="/"><img id="logo" src="/logo.svg"></a>
|
|
|
|
<h2>Who's using it?</h2>
|
|
|
|
</section>
|
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li><a href="/">Home</a></li>
|
|
|
|
<li class="active-tab">Who's using it?</li>
|
|
|
|
<li><a href="/fines">Fines</a></li>
|
|
|
|
<li><a href="/about">About</a></li>
|
|
|
|
<li><a href="/sources">Acknowledgements</a></li>
|
|
|
|
<li><a href="/contributing">Contribute</a></li>
|
|
|
|
<li><a href="https://github.com/hughrun/public_library_map">Code</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<section class="who-else">
|
|
|
|
<h2>Who's using it?</h2>
|
|
|
|
<p>Maps are nice but sometimes you just want a list, right?</p>
|
|
|
|
<p>Search by ILS, Discovery Platform, or both together.</p>
|
|
|
|
|
|
|
|
<script src="/d3.js"></script>
|
2024-06-29 08:59:44 +10:00
|
|
|
<script src="/who-else.js"></script>
|
2024-02-11 14:10:24 +11:00
|
|
|
|
|
|
|
<form id="form">
|
|
|
|
<label for="ils">Integrated Library System (ILS/LMS)</label>
|
|
|
|
<select name="ils" id="ils">
|
|
|
|
<option selected>---</option>
|
|
|
|
</select><br/>
|
|
|
|
<label for="ils">Discovery Platform</label>
|
|
|
|
<select name="discovery" id="discovery">
|
|
|
|
<option selected>---</option>
|
|
|
|
</select><br/>
|
|
|
|
<button>Find out who's using it!</button>
|
|
|
|
</form>
|
|
|
|
<ul id="libraries"></ul>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
|
|
<p>This website and the data it uses licensed <a href="https://creativecommons.org/licenses/by/4.0/">CC-BY-4.0</a></p>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|