2026-02-07 05:51:21 +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>
|
|
|
|
|
<!-- Fontawesome Icons -->
|
2026-03-21 03:06:59 +00:00
|
|
|
<link rel="icon" href="/static/ico/favicon-sync.ico" type="image/x-icon" />
|
2026-03-13 17:33:39 +00:00
|
|
|
<script src="/static/js/events.js"></script>
|
2026-02-07 05:51:21 +00:00
|
|
|
{{ block "extraheader" . }}{{ end }}
|
2026-03-21 19:34:23 +00:00
|
|
|
{{ if not .Config.IsProductionEnvironment }}
|
2026-02-24 15:34:53 +00:00
|
|
|
<script src="/.flogo/injector.js"></script>
|
|
|
|
|
{{ end }}
|
2026-02-07 05:51:21 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{{ template "sync/component/icons.html" }}
|
|
|
|
|
<div class="d-flex">
|
|
|
|
|
{{ if .User }}
|
2026-02-25 17:21:37 +00:00
|
|
|
{{ template "sync/component/sidebar.html" . }}
|
2026-02-07 05:51:21 +00:00
|
|
|
{{ end }}
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-02-07 18:26:47 +00:00
|
|
|
<div id="content">
|
|
|
|
|
{{ template "content" . }}
|
|
|
|
|
</div>
|
2026-02-24 15:34:53 +00:00
|
|
|
<div id="flogo"></div>
|
2026-02-07 05:51:21 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|