Compare commits

..

No commits in common. "f2e6f36ce611d45d4247c5ba47e4405528dce824" and "cb44142d5c0bd113e8eaddebc2171b02c78aa3cd" have entirely different histories.

3 changed files with 1 additions and 3 deletions

View file

@ -1,7 +1,6 @@
--- ---
title: Impressum und Datenschutzerklärung title: Impressum und Datenschutzerklärung
description: Impressum und Datenschutzerklärung description: Impressum und Datenschutzerklärung
noindex: true
--- ---
## Impressum ## Impressum

View file

@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
{{ partial "head/meta.html" . }} {{ partial "head/meta.html" . }}
<title>{{ or .Title .Site.Title }}</title> <title>{{ or .Title .Site.Title }}{{ if ne .Kind "home" }} | {{ .CurrentSection.Title }}{{ end }}</title>
{{ partial "head/favicon.html" . }} {{ partial "head/favicon.html" . }}
{{ partial "head/styling.html" . }} {{ partial "head/styling.html" . }}
</head> </head>

View file

@ -6,5 +6,4 @@
{{ $summary := or .Page.Params.Description .Site.Params.Description }} {{ $summary := or .Page.Params.Description .Site.Params.Description }}
<meta property="og:description" content="{{ $summary }}" /> <meta property="og:description" content="{{ $summary }}" />
<meta name="description" content="{{ $summary }}" /> <meta name="description" content="{{ $summary }}" />
{{ if .Page.Params.Noindex }}<meta name="robots" content="noindex">{{end}}
{{ hugo.Generator }} {{ hugo.Generator }}