2025-11-03 12:38:47 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
2025-11-03 22:13:11 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>{{template "title" .}} - Nidus Sync</title>
|
2025-11-10 22:42:19 +00:00
|
|
|
<!-- Bootstrap CSS -->
|
2025-11-03 22:13:11 +00:00
|
|
|
<link href="/static/vendor/css/bootstrap.min.css" rel="stylesheet">
|
2025-11-08 00:04:44 +00:00
|
|
|
<!-- Bootstrap Icons -->
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css">
|
2025-11-10 22:42:19 +00:00
|
|
|
<!-- Fontawesome Icons -->
|
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
2026-01-14 20:52:17 +00:00
|
|
|
<!-- favicon -->
|
|
|
|
|
<link rel="icon" href="/static/favicon.ico" type="image/x-icon"/>
|
2025-12-11 00:30:24 +00:00
|
|
|
{{block "extraheader" .}} {{end}}
|
2025-11-03 12:38:47 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{{template "content" .}}
|
2025-11-03 22:13:11 +00:00
|
|
|
<script src="/static/vendor/js/bootstrap.bundle.min.js"></script>
|
2025-11-03 12:38:47 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|