Fix css links (.RSSlink seems to be broken)

See spf13/hugo#1147
This commit is contained in:
Philipp Oppermann
2016-02-14 16:04:45 +01:00
parent 05ae323d0f
commit f6d3494d66

View File

@@ -15,11 +15,11 @@
<link rel="canonical" href="{{ .Permalink }}"> <link rel="canonical" href="{{ .Permalink }}">
{{ if .RSSlink }} {{ if .RSSlink }}
<link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" /> <link href="/atom.xml" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
<link href="{{ .RSSlink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}" /> <link href="/atom.xml" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}" />
{{ end }} {{ end }}
<!-- CSS --> <!-- CSS -->
<link rel="stylesheet" href="/css/poole.css"> <link rel="stylesheet" href="/css/poole.css">
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/main.css"> <link rel="stylesheet" href="/css/main.css">
</head> </head>