16 lines
338 B
HTML
16 lines
338 B
HTML
{{define "base"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Elektromarket</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
[logo]
|
|
{{template "content" .}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|