diff options
author | Alan Pearce | 2014-06-07 14:48:22 +0100 |
---|---|---|
committer | Alan Pearce | 2014-06-07 14:48:22 +0100 |
commit | 123b49e8fa41363b0946a2e5a6b92fb2318e7486 (patch) | |
tree | c4255d4b2871820f69bbc84e9bb89621c683d635 /layouts | |
parent | 126b3d5b1411cb3be0d54305ff738df7c1e6487a (diff) | |
download | hyde-123b49e8fa41363b0946a2e5a6b92fb2318e7486.tar.lz hyde-123b49e8fa41363b0946a2e5a6b92fb2318e7486.tar.zst hyde-123b49e8fa41363b0946a2e5a6b92fb2318e7486.zip |
Move the sidebar after the content
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/_default/list.html | 2 | ||||
-rw-r--r-- | layouts/_default/single.html | 2 | ||||
-rw-r--r-- | layouts/index.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index bc97cc9..d3a63cb 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,6 +1,5 @@ {{ template "theme/partials/head.html" . }} <body class="theme-base-0b layout-reverse"> -{{ template "theme/partials/sidebar.html" . }} <main class="content container" role="main"> <ul class="posts"> {{ range .Data.Pages }} @@ -8,5 +7,6 @@ {{ end }} </ul> </main> +{{ template "theme/partials/sidebar.html" . }} </body> </html> diff --git a/layouts/_default/single.html b/layouts/_default/single.html index ba9c5cb..3bff8fb 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,6 +1,5 @@ {{ template "theme/partials/head.html" . }} <body class="theme-base-0b layout-reverse"> -{{ template "theme/partials/sidebar.html" . }} <main class="content container" role="main"> <article class="post"> <h1>{{ .Title }}</h1> @@ -8,5 +7,6 @@ {{ .Content }} </article> </main> +{{ template "theme/partials/sidebar.html" . }} </body> </html> diff --git a/layouts/index.html b/layouts/index.html index d820afc..5d181e6 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,6 +1,5 @@ {{ template "theme/partials/head.html" . }} <body class="theme-base-0b layout-reverse"> -{{ template "theme/partials/sidebar.html" . }} <main class="content container" role="main"> <div class="posts"> {{ range .Data.Pages }} @@ -16,5 +15,6 @@ {{ end }} </div> </main> +{{ template "theme/partials/sidebar.html" . }} </body> </html> |