Update functions deprecated in Hugo 0.55 (#28)

Following functions are deprecated in Hugo 0.55:

* Page's .RSSLink
* Page's .Hugo
This commit is contained in:
Shiva Huang
2019-04-21 14:46:30 +08:00
committed by Carson Ip
parent cb81cd0ae9
commit 8f366a6e45

View File

@@ -6,7 +6,7 @@
{{ partial "meta.html" . }} {{ partial "meta.html" . }}
{{ partial "og.html" . }} {{ partial "og.html" . }}
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" /> <link href="{{ with .OutputFormats.Get "RSS" }}{{ .Permalink }}{{ end }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
<link rel="shortcut icon" href="/favicon.png"> <link rel="shortcut icon" href="/favicon.png">
<link href="{{ "webfonts/ptserif/main.css" | absURL }}" rel='stylesheet' type='text/css'> <link href="{{ "webfonts/ptserif/main.css" | absURL }}" rel='stylesheet' type='text/css'>
@@ -14,5 +14,5 @@
<link rel="stylesheet" href="{{ "css/style.css" | absURL }}"> <link rel="stylesheet" href="{{ "css/style.css" | absURL }}">
{{ .Hugo.Generator }} {{ hugo.Generator }}
</head> </head>