This time, starting with a focus on navigation, layout, and ease of use
14 lines
155 B
HTML
14 lines
155 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset = "utf-8">
|
|
</head>
|
|
|
|
<body>
|
|
{{ partial "nav.html" . }}
|
|
|
|
{{ .Content }}
|
|
</body>
|
|
|
|
</html>
|