echo-todos/view/base.templ
Alexilator 4fac3fbfa3
Some checks failed
Build Docker Image / build (push) Failing after 6m38s
public setup
2024-08-19 14:56:20 +02:00

20 lines
436 B
Text

package view
var Username string
templ Base() {
<!DOCTYPE html>
<html lang="en">
<head>
<title>{ Username } Todos</title>
<meta charset="UTF-8"/>
<link href="/css/pico.min.css" rel="stylesheet"/>
<link href="/css/style.css" rel="stylesheet"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<script src="/js/htmx.min.js"></script>
</head>
<body>
{ children... }
</body>
</html>
}