Initialisierung
This commit is contained in:
parent
4084518848
commit
6dd9fa38f6
116 changed files with 17349 additions and 2 deletions
24
layouts/partials/head.html
Normal file
24
layouts/partials/head.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, intial-scale=1">
|
||||
<meta name="author" content="{{ .Site.Params.Author }}">
|
||||
{{ $title := print .Site.Title " | " .Title }}
|
||||
{{ if .IsHome }}{{ $title := .Site.Title }} {{ end }}
|
||||
<title>{{ $title }}</title>
|
||||
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ if .IsPage }}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}">
|
||||
|
||||
{{/* compressed soll besser sein als minify bei SASS */}}
|
||||
{{ $sassOptions := (dict "targetPath" "main.css" "outputStyle" "compressed" "enableSourceMap" (not hugo.IsProduction) "includePaths" "assets/bootstrap/scss") }}
|
||||
{{ $sassStyle := resources.Get "_own/sass/main.scss" | resources.ToCSS $sassOptions | minify }}
|
||||
<link rel="stylesheet" type="text/css" href="{{ $sassStyle.RelPermalink | relURL }}">
|
||||
|
||||
{{ $style := resources.Match "_own/css/**.css" | resources.Concat "css/custom.css" | minify }}{{/* .Resources.GetMatch "css/**.css" */}}
|
||||
<link rel="stylesheet" type="text/css" href="{{ $style.RelPermalink | relURL }}">
|
||||
|
||||
{{ if isset .Site.Params "custom_css" }}
|
||||
{{ range .Site.Params.custom_css }}
|
||||
<link rel="stylesheet" type="text/css" href="{{ $.Site.BaseURL }}{{ . }}">
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</head>
|
Loading…
Add table
Add a link
Reference in a new issue