mirror of
https://github.com/seigler/seigler.github.io
synced 2025-07-27 07:16:09 +00:00
27 lines
664 B
HTML
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>
|