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
This commit is contained in:
24
themes/hugo-theme-minos/layouts/partials/head.html
Normal file
24
themes/hugo-theme-minos/layouts/partials/head.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user