Files
blog/templates/layout.html
Evrard Van Espen 7b851dfb0b Make it responsive
2025-10-30 11:09:38 +00:00

35 lines
587 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Evrard Van Espen</title>
<style>
{{ .Css }}
</style>
</head>
<body>
{{ template "header.html" . }}
{{ .Hero }}
<main id="page">
<div id="content">
{{ .Content }}
</div>
{{ if .ShowSidebar }}
<div id="sidebar">
<h2>~ Tags</h2>
<div id="tags">
{{ range .Tags }}
<a href="/tags/{{ . }}.html">{{ . }}</a>
{{ end }}
</div>
</div>
{{ end }}
</main>
</body>
</html>