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>
|
|
|
|
|
<link href="/static/vendor/css/bootstrap.min.css" rel="stylesheet">
|
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">
|
2025-11-05 17:49:19 +00:00
|
|
|
<style>
|
|
|
|
|
{{template "style" .}}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{{if .User}}
|
|
|
|
|
{{template "header" .User}}
|
|
|
|
|
{{end}}
|
|
|
|
|
{{template "content" .}}
|
|
|
|
|
<script src="/static/vendor/js/bootstrap.bundle.min.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|