1
0
Files
www.taylors.life/themes/hugo-theme-minos/layouts/partials/head.html
Eric Taylor 9a313c53a8 Move theme from subrepo into the main repo
the theme is customized for this site so having it
as a sub repo dosent make sense
2025-12-24 11:05:37 -05:00

25 lines
811 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ .Title }}{{ if ne .Title .Site.Title }} // {{ .Site.Title }}{{ end }}</title>
{{ partial "meta.html" . }}
{{ partial "og.html" . }}
{{- with .OutputFormats.Get "rss" -}}
<link href="{{ .Permalink }}" rel="alternate" type="application/rss+xml" title="{{ $.Site.Title }}" />
{{- end }}
<link rel="shortcut icon" href="/favicon.ico">
<link href="{{ "webfonts/ptserif/main.css" | absURL }}" rel='stylesheet' type='text/css'>
<link href="{{ "webfonts/source-code-pro/main.css" | absURL }}" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="{{ "css/style.css" | absURL }}">
{{ range .Site.Params.customCss -}}
<link rel="stylesheet" href="{{ . | absURL }}">
{{- end }}
{{ hugo.Generator }}
</head>