seigler.github.io/src/themes/eos/layouts/_default/baseof.html
2017-02-13 03:38:58 -05:00

27 lines
664 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<base href="{{ .Site.BaseURL }}">
<title>{{ block "title" . }}
{{ .Title }} - {{ .Site.Title }}
{{ end }}</title>
<link rel="canonical" href="{{ .Permalink }}">
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
<link rel="stylesheet" href="css/bundle.css">
</head>
<body class="{{ .Section | default .Title | urlize }}">
<div class="wrapper">
{{ partial "header" . }}
<main>
{{ block "main" . }}
{{ end }}
</main>
{{ partial "footer" . }}
</div>
<script src="js/app.js"></script>
</body>
</html>