Do not show page title at the homepage
This commit is contained in:
parent
be308b5371
commit
da67c4e25a
@ -6,7 +6,13 @@
|
||||
<meta property="og:title" content="{{ .Title }} | {{ .Site.Title }}" />
|
||||
<meta property="og:url" content="{{ .Permalink }}" />
|
||||
|
||||
<title>{{ .Title }} | {{ .Site.Title }}</title>
|
||||
<title>
|
||||
{{ if eq .Url "/" }}
|
||||
{{ .Site.Title }}
|
||||
{{ else }}
|
||||
{{ .Title }} · {{ .Site.Title }}
|
||||
{{ end }}
|
||||
</title>
|
||||
|
||||
<link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/main.css" />
|
||||
|
Loading…
Reference in New Issue
Block a user