Elektromarket/templates/base.html

17 lines
442 B
HTML

{{define "base"}}
<!DOCTYPE html>
<html>
<head>
<title>Elektromarket</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="static/css/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<a href="http://127.0.0.1:8000">[Strona główna]<a/>
{{template "content" .}}
</body>
</html>
{{end}}