2016-02-19 23:35:42 -05:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2016-12-28 21:36:08 -05:00
|
|
|
|
<meta name="author" content="{{ with .Site.Author.firstname }}{{ . }}{{ end }} {{ with .Site.Author.lastname }}{{ . }}{{ end }}">
|
2016-12-28 21:13:54 -05:00
|
|
|
|
<meta name="description" content="{{ with .Site.Params.description }}{{ . }}{{ end }}">
|
2019-08-17 18:54:03 -04:00
|
|
|
|
{{ hugo.Generator }}
|
2016-02-19 23:35:42 -05:00
|
|
|
|
|
|
|
|
|
{{ $.Scratch.Add "title" .Site.Title }}
|
2016-12-28 21:13:54 -05:00
|
|
|
|
<title>{{ with .Title }}{{ if ne . ($.Scratch.Get "title") }}{{ . }} · {{ end }}{{ end }}@{{ .Site.Author.handle }}’s {{ .Site.Title }}</title>
|
2016-02-19 23:35:42 -05:00
|
|
|
|
|
2019-08-17 18:54:03 -04:00
|
|
|
|
<link rel="stylesheet" href="{{.Site.BaseURL}}css/weblog.css" media="screen" charset="utf-8" />
|
2016-02-20 19:35:30 -05:00
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/1.2.14/css/lightgallery.min.css" type="text/css" />
|
2016-02-19 23:35:42 -05:00
|
|
|
|
{{ partial "custom_stylesheets.html" . }}
|
|
|
|
|
|
2016-12-28 21:13:54 -05:00
|
|
|
|
{{ if .Site.Params.rssenabled }}
|
2024-01-03 19:11:34 -05:00
|
|
|
|
<link href="{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}" rel="alternate" type="application/rss+xml" title="{{.Site.Title}}" />
|
2016-12-28 21:13:54 -05:00
|
|
|
|
{{ end }}
|
2016-02-19 23:35:42 -05:00
|
|
|
|
</head>
|
|
|
|
|
<body class="site">
|