diff options
| -rw-r--r-- | exampleSite/config.toml | 4 | ||||
| -rw-r--r-- | layouts/partials/head.html | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml index dc392bc..c8e2ec0 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -19,7 +19,11 @@ disableKinds = ['RSS'] [outputFormats.humanstxt] mediaType = 'text/plain' baseName = 'humans' + rel = 'author' isPlainText = true + isHTML = false + noUgly = true + permalinkable = false # Atom feed. # For more see: https://validator.w3.org/feed/docs/atom.html#whatIsAtom diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 478410a..b0f1e58 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -5,7 +5,6 @@ <meta name="viewport" content="width=device-width,initial-scale=1.0,shrink-to-fit=no"> <link rel="canonical" href="{{ .Permalink }}"> - <link type="text/plain" rel="author" href="{{ "humans.txt" | absURL }}"> <title>{{ block "title" . }}{{ if .IsHome }}{{ site.Title }}{{ else }}{{ with .Params.Title }}{{ . }} - {{ end }}{{ site.Title }}{{ end }}{{ end }}</title> <meta name="description" content="{{ (partial "description.html" . ) }}"> |
