mirror of
https://github.com/skidoodle/pastebin
synced 2025-10-14 09:44:48 +02:00
17 lines
321 B
Plaintext
17 lines
321 B
Plaintext
package view
|
|
|
|
templ base(title string) {
|
|
<!DOCTYPE html>
|
|
<html lang="zxx">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>{ title }</title>
|
|
<link rel="stylesheet" href="/style.css"/>
|
|
</head>
|
|
<body>
|
|
{ children... }
|
|
</body>
|
|
</html>
|
|
}
|