55 lines
2.2 KiB
HTML
55 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Orphanages Across Ten Countries · A Simple Globe Tour</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,800&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet" />
|
|
<link rel="stylesheet" href="./src/styles.css" />
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<header class="topbar">
|
|
<div class="brand">
|
|
<span class="brand-mark"></span>
|
|
<div class="brand-text">
|
|
<h1>Ten Countries · Ten Homes</h1>
|
|
<p>A short tour of orphanages in Ethiopia and nine Muslim-majority countries.</p>
|
|
</div>
|
|
</div>
|
|
<div class="topbar-actions">
|
|
<button id="reset-view" class="btn-ghost" title="Reset globe view">↺ Reset</button>
|
|
<span id="hint" class="hint">Click any marker to open the home</span>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="layout">
|
|
<section class="globe-wrap">
|
|
<div id="globe"></div>
|
|
<div class="legend">
|
|
<div class="legend-row"><span class="dot"></span>Orphanage location</div>
|
|
<div class="legend-sub">Drag to rotate · Scroll to zoom · Click a marker for details</div>
|
|
</div>
|
|
</section>
|
|
|
|
<aside id="panel" class="panel">
|
|
<div class="panel-empty">
|
|
<div class="empty-illustration">🌍</div>
|
|
<h2>Pick a marker on the globe</h2>
|
|
<p>You'll see the orphanage's name, the city and country, a short biography, photos, and roughly how many children live there.</p>
|
|
<ul class="country-list" id="country-list"></ul>
|
|
</div>
|
|
</aside>
|
|
</main>
|
|
|
|
<footer class="footbar">
|
|
<span>Built as a learning project · Photos via Unsplash · Coordinates are approximate city centers</span>
|
|
</footer>
|
|
</div>
|
|
|
|
<script type="module" src="./src/main.js"></script>
|
|
</body>
|
|
</html>
|