Skip to content

Commit 9531f62

Browse files
authored
Fix build on recent Hugo versions (#58)
1 parent d1f2a0e commit 9531f62

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

content/tools.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
---
2-
markup: mmark
3-
---
4-
51
### Tools
62

73
This page lists some existing tools to help with CodeMeta files

themes/hugo-material/layouts/partials/head.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
44
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
55

6-
{{ .Hugo.Generator }}
76
{{ with .Site.Params.name }}<meta name="author" content="{{ . }}">{{ end }}
87
{{ with .Site.Params.role }}<meta name="description" content="{{ . }}">{{ end }}
98

@@ -30,7 +29,7 @@
3029
{{ range .Site.Params.custom_css }}
3130
<link rel="stylesheet" href="{{ "/css/" | relURL }}{{ . }}">
3231
{{ end }}
33-
<link rel="feed" href="{{ .RSSLink | default .Site.RSSLink }}" type="application/rss+xml" title="{{ .Site.Title }}">
32+
{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}
3433
<link rel="canonical" href="{{ .Permalink }}">
3534

3635
</head>

0 commit comments

Comments
 (0)