mirror of
https://github.com/AmanTahiliani/FHIR-Sandbox.git
synced 2026-08-07 11:53:56 -04:00
34 lines
1.1 KiB
HTML
34 lines
1.1 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">
|
|
</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 class="brand-light">Sandbox</span>
|
|
</div>
|
|
<nav class="nav-links">
|
|
{{block "nav" .}}{{end}}
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
{{block "content" .}}{{end}}
|
|
</main>
|
|
|
|
<footer class="w-full text-center text-xs text-muted py-8">
|
|
<p>FHIR Health Platform © 2026 — SMART on FHIR R4 Sandbox</p>
|
|
</footer>
|
|
|
|
{{block "scripts" .}}{{end}}
|
|
</body>
|
|
</html>
|