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

17 lines
577 B
HTML
Raw Normal View History

2021-10-07 16:23:34 +03:00
{{ define "layout" }}<!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-06-01 14:26:02 +03:00
</head>
<body>
<div id="root" class="vh-100">
2021-10-07 16:23:34 +03:00
{{ template "navbar" . }}
{{ template "content" . }}
2021-06-01 14:26:02 +03:00
</div>
2021-10-06 15:30:52 +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-07 16:23:34 +03:00
</html>{{ end }}