2014-04-12 16:04:17 -04:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
2020-01-19 08:42:27 -05:00
|
|
|
|
2014-04-12 16:04:17 -04:00
|
|
|
<head>
|
2014-09-02 15:05:20 -04:00
|
|
|
{{ partial "meta.html" . }}
|
2014-04-12 16:04:17 -04:00
|
|
|
|
2015-09-09 00:51:57 -04:00
|
|
|
<title>{{ .Title }} - {{ .Site.BaseURL }}</title>
|
2014-04-12 16:04:17 -04:00
|
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
2014-09-02 15:05:20 -04:00
|
|
|
{{ partial "header.includes.html" . }}
|
2019-10-14 03:30:09 -04:00
|
|
|
{{ with .OutputFormats.Get "RSS" -}}
|
2020-01-19 08:42:27 -05:00
|
|
|
{{ printf "<link href=%q rel=\"alternate\" type=%q title=%q />" .Permalink .MediaType $.Site.Title | safeHTML }}
|
2019-10-14 03:30:09 -04:00
|
|
|
{{- end }}
|
2020-01-19 08:42:27 -05:00
|
|
|
</head>
|