1
0
mirror of https://github.com/ebosas/microservices.git synced 2025-06-06 22:16:11 +02:00

20 lines
656 B
HTML
Raw Permalink Normal View History

2021-10-13 21:45:44 +03:00
{{define "layout" -}}
2021-10-11 08:57:13 +03:00
<!doctype html>
2021-06-01 14:26:02 +03:00
<html lang="en">
<head>
<title>Microservices</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-06-08 21:26:14 +03:00
<link rel="stylesheet" href="static/build/style.css">
2021-10-13 21:45:44 +03:00
{{if and . .Json}}<script>window.__DATA="{{.Json}}"</script>{{end -}}
2021-06-01 14:26:02 +03:00
</head>
<body>
<div id="root" class="vh-100">
2021-10-13 21:45:44 +03:00
{{template "navbar" .}}
{{template "content" .}}
2021-10-08 13:25:43 +03:00
</div>
2021-10-27 09:34:04 +03:00
<!-- <script src="http://127.0.0.1:8000/index.js"></script> -->
<script src="static/build/index.js"></script>
2021-06-01 14:26:02 +03:00
</body>
2021-10-11 08:57:13 +03:00
</html>
2021-10-13 21:45:44 +03:00
{{- end}}