I'm starting to get a sense how to do all of this with these new tools. I've semi-ported the sidebar at this point.
30 lines
876 B
HTML
30 lines
876 B
HTML
<!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="{{ bundlePathCSS }}" rel="stylesheet" />
|
|
<!-- Fontawesome Icons -->
|
|
<link rel="icon" href="/static/ico/favicon-sync.ico" type="image/x-icon" />
|
|
<script src="/static/js/events.js"></script>
|
|
<script src="{{ bundlePathJS }}"></script>
|
|
{{ block "extraheader" . }}{{ end }}
|
|
{{ if not .Config.IsProductionEnvironment }}
|
|
<script src="/.flogo/injector.js"></script>
|
|
{{ end }}
|
|
</head>
|
|
<body>
|
|
{{ template "sync/component/icons.html" }}
|
|
<div class="d-flex">
|
|
{{ if .User }}
|
|
{{ template "sync/component/sidebar.html" . }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div id="content">
|
|
{{ template "content" . }}
|
|
</div>
|
|
<div id="flogo"></div>
|
|
</body>
|
|
</html>
|