Convert example/blog to use new syntax for Hugo v0.14+
authorAnthony Fok <foka@debian.org>
Wed, 9 Sep 2015 04:51:57 +0000 (22:51 -0600)
committerAnthony Fok <foka@debian.org>
Wed, 9 Sep 2015 04:51:57 +0000 (22:51 -0600)
safeHtml → safeHTML, .Site.BaseUrl → .Site.BaseURL

(Hmm... How did we miss that earlier?)

examples/blog/layouts/partials/header.html
examples/blog/layouts/partials/navbar.html
examples/blog/layouts/sitemap.xml

index edb72dd3fcacfca02eb69c69889ff8faa5a7f694..a3042e0a905aac99eb109c592e2dc01fb3e3f695 100644 (file)
@@ -3,7 +3,7 @@
 <head>
     {{ partial "meta.html" . }}
 
-    <title>{{ .Title }} - {{ .Site.BaseUrl }}</title>
+    <title>{{ .Title }} - {{ .Site.BaseURL }}</title>
     <link rel="canonical" href="{{ .Permalink }}">
     {{ partial "header.includes.html" . }}
     {{ if .RSSlink }}<link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />{{ end }}
index c4ef82334bcd2eb0ce08ed65788cb7857bfe9c56..b15c246304e226cff732b03ee8970e42cdfaeff6 100644 (file)
@@ -7,7 +7,7 @@
                     <span class="icon-bar"></span>
                     <span class="icon-bar"></span>
                 </button>
-                <a class="navbar-brand" href="{{ .Site.BaseUrl }}">{{ .Site.Title }}</a>
+                <a class="navbar-brand" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
             </div>
             <div class="collapse navbar-collapse navbar-ex1-collapse">
                 <ul class="nav navbar-nav">
@@ -19,4 +19,4 @@
                 </ul>
             </div>
         </div>
-    </nav>
\ No newline at end of file
+    </nav>
index 2cc760811fc2ae4776691eef3a59f823eb46356b..8eb623b8ba54d33e585458884872b1c707f8f559 100644 (file)
@@ -2,7 +2,7 @@
   {{ range .Data.Pages }}
   <url>
     <loc>{{ .Permalink }}</loc>
-    <lastmod>{{ safeHtml ( .Date.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ with .Sitemap.ChangeFreq }}
+    <lastmod>{{ safeHTML ( .Date.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ with .Sitemap.ChangeFreq }}
     <changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
     <priority>{{ .Sitemap.Priority }}</priority>{{ end }}
   </url>