Files
mehl.mx/themes/hugo-sustain/layouts/partials/head.html

30 lines
1.8 KiB
HTML
Raw Normal View History

2019-03-18 16:50:46 +01:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
2019-03-19 15:51:07 +01:00
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2019-03-18 16:50:46 +01:00
<meta name="author" content="{{ .Site.Params.Author }}" />
2019-03-19 15:51:07 +01:00
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}" />{{ end }}
{{ with .Site.Params.keywords }}<meta name="description" content="{{ . }}" />{{ end }}
<link rel="shortcut icon" type="image/x-icon" href="{{ .Site.BaseURL }}img/favicon.ico" />
2019-10-21 20:05:58 +02:00
<link href="/blog/index.xml" rel="alternate" type="application/rss+xml" title="Max Mehl - blog feed">
<link href="/categories/english/index.xml" rel="alternate" type="application/rss+xml" title="Max Mehl - blog feed (EN)">
<link href="/categories/deutsch/index.xml" rel="alternate" type="application/rss+xml" title="Max Mehl - blog feed (DE)">
2019-03-18 16:50:46 +01:00
<title>
2019-10-20 15:40:06 +02:00
{{- if .IsHome -}}
{{- .Site.Title -}}
{{- else -}}
{{- if .Params.heading -}} {{- .Params.heading -}} {{- else -}} {{- .Site.Title -}} {{ print " | " }} {{- .Title -}} {{- end -}}
{{- end -}}
</title>
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/bootstrap-3.3.7.min.css" />
2019-03-18 16:50:46 +01:00
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/main.css" />
2019-10-20 15:40:06 +02:00
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/luxbar.css" />
2019-03-18 16:50:46 +01:00
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/fontawesome/css/all.min.css" />
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/fonts.css" />
{{ range .Site.Params.custom_css }}
<link rel="stylesheet" href="{{ $.Site.BaseURL}}{{ . }}?v={{ md5 hugo.BuildDate }}" />
2019-03-18 16:50:46 +01:00
{{ end }}
</head>