-
+
© {{ with .Site.Copyright | default .Site.Title }} {{ . | safeHTML }} {{ now.Format "2006"}} {{ end }}
{{ partial "social-follow.html" . }}
diff --git a/layouts/partials/tags.html b/layouts/partials/tags.html
index 976a9a2..fe1a94a 100644
--- a/layouts/partials/tags.html
+++ b/layouts/partials/tags.html
@@ -1,8 +1,8 @@
- {{ range .Params.tags }}
+ {{ range .GetTerms "tags" }}
-
-
- {{- . -}}
+
+ {{- .LinkTitle -}}
{{ end }}
diff --git a/layouts/robots.txt b/layouts/robots.txt
index 7a24e82..d4efb29 100644
--- a/layouts/robots.txt
+++ b/layouts/robots.txt
@@ -1,8 +1,8 @@
User-agent: *
-# robotstxt.org - if ENV production variable is false robots will be disallowed.
-{{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
+{{/* robotstxt.org - if ENV production variable is false robots will be disallowed. */ -}}
+{{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") -}}
Allow: /
-Sitemap: {{.Site.BaseURL}}/sitemap.xml
-{{ else }}
+Sitemap: {{ "/sitemap.xml" | absURL }}
+{{ else -}}
Disallow: /
-{{ end }}
+{{ end -}}