1 files changed, 2 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index a9b4963..254503b 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -29,7 +29,8 @@
<link rel="stylesheet" type="text/css" href="{{ $style.RelPermalink }}">
{{ with .OutputFormats.Get "rss" -}}
<link rel="{{.Rel}}" type="{{.MediaType.Type}}"
- href="{{.Permalink}}" title="{{$.Site.Title | safeHTML}}"/>
+ href="{{.Permalink}}" title="{{ if and ($.Title) (not $.IsHome) }}{{ $fullTitle }} - {{ end }}{{ $.Site.Title }}"/>
+
{{ end -}}
{{ range .Site.Params.relMe }}
<link href="{{.}}" rel="me">
|