wstempl/component/common.templ
2025-05-23 18:35:45 +07:00

25 lines
550 B
Plaintext

package component
templ Common(pagename string) {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{ pagename }</title>
</head>
<body>
<nav>
<a href="/">HOME</a>
<a href="/about-us">about us</a>
<a href="/profile">profile</a>
<a href="/contact">Contact</a>
<a href="/contact1">Contact1</a>
<a href="/contact2">Contact2</a>
<a href="/contact3">Contact3</a>
</nav>
{ children... }
</body>
</html>
}