16 lines
388 B
Plaintext
16 lines
388 B
Plaintext
package layout
|
|
|
|
templ Base(title string){
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link href="/public/output.css" rel="stylesheet"/>
|
|
<title>{ title }</title>
|
|
</head>
|
|
<body>
|
|
{ children... }
|
|
</body>
|
|
</html>
|
|
} |