echo-todos/view/base.templ

21 lines
436 B
Text
Raw Permalink Normal View History

2024-08-19 12:56:20 +00:00
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>
}