2025-11-05 17:49:19 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<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-05 17:49:19 +00:00
|
|
|
<link href="/static/vendor/css/bootstrap.min.css" rel="stylesheet">
|
2025-11-10 22:42:19 +00:00
|
|
|
<!-- Fontawesome Icons -->
|
2025-11-06 22:58:18 +00:00
|
|
|
<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-11-13 17:48:38 +00:00
|
|
|
{{block "extraheader" .}} {{end}}
|
2025-11-05 17:49:19 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{{if .User}}
|
|
|
|
|
{{template "header" .User}}
|
|
|
|
|
{{end}}
|
|
|
|
|
{{template "content" .}}
|
|
|
|
|
<script src="/static/vendor/js/bootstrap.bundle.min.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|