nidus-sync/templates/authenticated.html

20 lines
473 B
HTML
Raw Normal View History

<!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">
<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>