diff options
author | Alan Pearce | 2014-06-07 10:07:10 +0100 |
---|---|---|
committer | Alan Pearce | 2014-06-07 10:07:10 +0100 |
commit | 15e3433c673d692232b0140da8160324ef7c2fa2 (patch) | |
tree | e35108ac8786008a7f12276e3154b859bf5f93eb | |
parent | 44c06029bcb0a87eab6ed1c02beb094b87dc4afa (diff) | |
download | hyde-15e3433c673d692232b0140da8160324ef7c2fa2.tar.lz hyde-15e3433c673d692232b0140da8160324ef7c2fa2.tar.zst hyde-15e3433c673d692232b0140da8160324ef7c2fa2.zip |
Reverse layout. Content-first development!
-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 4de3043..38c880c 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,5 +1,5 @@ {{ template "theme/partials/head.html" . }} - <body class="theme-base-0b"> + <body class="theme-base-0b layout-reverse"> {{ template "theme/partials/sidebar.html" . }} <div class="content container"> <ul class="posts"> diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 1af2a66..ce35c85 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,5 +1,5 @@ {{ template "theme/partials/head.html" . }} - <body class="theme-base-0b"> + <body class="theme-base-0b layout-reverse"> {{ template "theme/partials/sidebar.html" . }} <div class="content container"> <div class="post"> diff --git a/layouts/index.html b/layouts/index.html index 1c96a75..44d9e6c 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,5 +1,5 @@ {{ template "theme/partials/head.html" . }} - <body class="theme-base-0b"> + <body class="theme-base-0b layout-reverse"> {{ template "theme/partials/sidebar.html" . }} <div class="content container"> <div class="posts"> |