Files
aitrade/pkg/app/web/templates/base.html
T
kaedwen ea141eb012
Build and Push Docker Image / build-and-push (push) Failing after 1m41s
initial
2026-07-02 20:09:44 +02:00

15 lines
286 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{.Title}}</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
{{template "content" .}}
</div>
<script src="/static/app.js"></script>
</body>
</html>