Files
FHIR-Sandbox/app/templates/base.html
2026-02-20 17:46:34 -05:00

37 lines
1.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>FHIR Health Platform</title>
<link rel="stylesheet" href="/static/css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; }
</style>
</head>
<body>
<header class="navbar">
<div class="container navbar-content">
<div class="brand">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></svg>
FHIR <span>Sandbox</span>
</div>
<nav class="nav-links">
{{block "nav" .}}{{end}}
</nav>
</div>
</header>
<main class="container">
{{block "content" .}}{{end}}
</main>
<footer style="text-align: center; padding: 2rem; color: var(--text-muted); font-size: 0.875rem;">
<p>FHIR Health Platform &copy; 2026 — SMART on FHIR R4 Sandbox</p>
</footer>
{{block "scripts" .}}{{end}}
</body>
</html>