Browse Source

Added name to title tag

master
digitalcraftsman 9 years ago
parent
commit
09ff606652
  1. 2
      layouts/partials/head.html

2
layouts/partials/head.html

@ -4,7 +4,7 @@
<meta name="author" content="{{ with .Site.Params.name }}{{ . }}{{ end }}">
<meta name="description" content="{{ with .Site.Params.description }}{{ . }}{{ end }}">
{{ .Hugo.Generator }}
<title>{{ .Site.Title }}</title>
<title>{{ with .Site.Params.name }}{{ . }} - {{ end }}{{ .Site.Title }}</title>
<link rel="shortcut icon" href="{{ .Site.BaseURL }}images/favicon.png">
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css">
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/highlight.css">

Loading…
Cancel
Save