1
0
mirror of https://github.com/ebosas/microservices.git synced 2025-06-06 22:16:11 +02:00
2021-10-27 09:34:04 +03:00

20 lines
656 B
HTML

{{define "layout" -}}
<!doctype html>
<html lang="en">
<head>
<title>Microservices</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/build/style.css">
{{if and . .Json}}<script>window.__DATA="{{.Json}}"</script>{{end -}}
</head>
<body>
<div id="root" class="vh-100">
{{template "navbar" .}}
{{template "content" .}}
</div>
<!-- <script src="http://127.0.0.1:8000/index.js"></script> -->
<script src="static/build/index.js"></script>
</body>
</html>
{{- end}}