21 lines
436 B
Text
21 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>
|
||
|
}
|