about summary refs log tree commit diff stats
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/baseof.html2
-rw-r--r--layouts/index.html4
-rw-r--r--layouts/partials/head.html7
-rw-r--r--layouts/partials/sidebar.html6
4 files changed, 11 insertions, 8 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 8b6c324..ddf0d35 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -7,4 +7,4 @@
 
     {{ template "_internal/google_analytics_async.html" . }}
   </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/layouts/index.html b/layouts/index.html
index 04d3175..f9ddeae 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,7 +1,7 @@
 {{ define "main" -}}
 <div class="posts">
 {{ range .Data.Pages -}}
-<div class="post">
+<article class="post">
   <h1 class="post-title">
     <a href="{{ .Permalink }}">{{ .Title }}</a>
   </h1>
@@ -12,7 +12,7 @@
     <a href="{{ .RelPermalink }}">Read Moreā€¦</a>
   </div>
   {{ end }}
-</div>
+</article>
 {{- end }}
 </div>
 {{- end }}
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 5d1df3c..d7b936c 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -1,6 +1,7 @@
 <!DOCTYPE html>
 <html lang="en-GB">
   <head>
+    <link href="//gmpg.org/xfn/11" rel="profile">
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width,initial-scale=1">
 
@@ -18,6 +19,8 @@
     <link rel="prefetch" href="/css/syntax.css">
     {{- end }}
     <link rel="stylesheet" href="/css/hyde.css">
-    <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}">
+    {{ range .AlternativeOutputFormats -}}
+      {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
+    {{ end -}}
     {{ partial "hook_head_end.html" . }}
-  </head>
\ No newline at end of file
+  </head>
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
index c89cc6f..c8fa089 100644
--- a/layouts/partials/sidebar.html
+++ b/layouts/partials/sidebar.html
@@ -19,9 +19,9 @@
 
     <nav>
       <ul class="sidebar-nav">
-        <li><a href="{{ .Site.BaseURL }}">Home</a></li>
-        {{- range .Site.Menus.main }}
-        <li><a href="{{.URL}}">{{ .Name }}</a></li>
+        <li><a href="{{ .Site.BaseURL }}">Home</a> </li>
+        {{ range .Site.Menus.main -}}
+          <li><a href="{{.URL}}"> {{ .Name }} </a></li>
         {{- end }}
       </ul>
     </nav>