Initial commit

This commit is contained in:
Thomas Boerger
2016-11-10 10:53:04 +01:00
commit 5a2b024d9f
23 changed files with 508 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
</body>
</html>

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
{{ .Hugo.Generator }}
{{ with .Params.goimport }}
<meta name="go-import" content="{{ . }}">
{{ end }}
{{ with .Params.gosource }}
<meta name="go-source" content="{{ . }}">
{{ end }}
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.png">
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<link rel="stylesheet" href="styles/main.css">
<script type="text/javascript" src="scripts/main.js"></script>
</head>
<body>
{{ partial "navbar" . }}

View File

View File

@@ -0,0 +1 @@
{{ partial "menu" . }}