aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2015-09-03 17:25:12 -0600
committerkballou <kballou@devnulllabs.io>2017-09-02 19:31:44 -0600
commit5302bc37f023a21ba392597946367f48fb71a058 (patch)
tree3c0b958e910e7c295a8dce2ba576003e221b1600
parenta8b2fbed17007ffb39a7363d4b9a1912e94216b8 (diff)
downloadblog.kennyballou.com-5302bc37f023a21ba392597946367f48fb71a058.tar.gz
blog.kennyballou.com-5302bc37f023a21ba392597946367f48fb71a058.tar.xz
Remove deprecated Hugo directives
-rw-r--r--layouts/partials/head_includes.html2
-rw-r--r--layouts/partials/header.html4
-rw-r--r--layouts/partials/subheader.html2
-rw-r--r--layouts/sitemap.xml2
4 files changed, 5 insertions, 5 deletions
diff --git a/layouts/partials/head_includes.html b/layouts/partials/head_includes.html
index cf1eafc..3c9c148 100644
--- a/layouts/partials/head_includes.html
+++ b/layouts/partials/head_includes.html
@@ -1,3 +1,3 @@
-<link rel="sytlesheet" href="{{ .Site.BaseUrl }}/css/site.css" />
+<link rel="sytlesheet" href="{{ .Site.BaseURL }}/css/site.css" />
<link rel="stylesheet"
href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 2dc4d46..329debc 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -5,7 +5,7 @@
{{ partial "meta.html" . }}
- <base href="{{ .Site.BaseUrl }}" />
+ <base href="{{ .Site.BaseURL }}" />
<title>{{ .Site.Title }}</title>
<link rel="canonical" href="{{ .Permalink }}" />
@@ -15,6 +15,6 @@
{{ end }}
{{ partial "head_includes.html" . }}
- <link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/site.css" />
+ <link rel="stylesheet" href="{{ .Site.BaseURL }}/css/site.css" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
</head>
diff --git a/layouts/partials/subheader.html b/layouts/partials/subheader.html
index 3a4aaae..4cbdd9e 100644
--- a/layouts/partials/subheader.html
+++ b/layouts/partials/subheader.html
@@ -1,5 +1,5 @@
<div id="header">
<header>
- <a class="fade" href="{{ .Site.BaseUrl }}">~kballou</a>
+ <a class="fade" href="{{ .Site.BaseURL }}">~kballou</a>
</header>
</div>
diff --git a/layouts/sitemap.xml b/layouts/sitemap.xml
index e99a1bc..7f86e0c 100644
--- a/layouts/sitemap.xml
+++ b/layouts/sitemap.xml
@@ -3,7 +3,7 @@
<url>
<loc>{{ .Permalink }}</loc>
<lastmod>
- {{ safeHtml ( .Date.Format "2006-01-02T15:04:05-7:00" ) }}
+ {{ safeHTML ( .Date.Format "2006-01-02T15:04:05-7:00" ) }}
</lastmod>
{{ with .Sitemap.ChangeFreq }}
<changefreq>{{ . }}</changefreq>