diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2017-03-10 19:26:11 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2017-03-10 19:26:11 +0100 |
commit | 0cb9284d51b16d192f42e2d2a4c12a2911668b2e (patch) | |
tree | 365ca4077c408c45da535cacd98eeefb8464cc58 /blog/_layouts | |
parent | c8ba2958ba509b98896100db2c190ace48d103c8 (diff) | |
download | norsk-urskog-main-0cb9284d51b16d192f42e2d2a4c12a2911668b2e.tar.gz norsk-urskog-main-0cb9284d51b16d192f42e2d2a4c12a2911668b2e.tar.bz2 norsk-urskog-main-0cb9284d51b16d192f42e2d2a4c12a2911668b2e.zip |
First attempt at responsive design for site.
- Droppped sidebar from all pages.
- Wrapped post images in a div for easier styling.
- Drop the Inferno banner on too small displays.
Most stuff works quite well for a first attempt, mthinks.
Diffstat (limited to 'blog/_layouts')
-rw-r--r-- | blog/_layouts/default.html | 9 | ||||
-rw-r--r-- | blog/_layouts/post.html | 8 |
2 files changed, 5 insertions, 12 deletions
diff --git a/blog/_layouts/default.html b/blog/_layouts/default.html index 2488ce3..bd0ee80 100644 --- a/blog/_layouts/default.html +++ b/blog/_layouts/default.html @@ -10,15 +10,6 @@ <section id="body"> {{ content }} </section> - <section id="side-body"> - {% include news.html sidebar=true %} - - {% if site.links %} - <section id="links"> - <h2>{% t home.links %}</h2> - </section> - {% endif %} - </section> </section> </section> diff --git a/blog/_layouts/post.html b/blog/_layouts/post.html index 555bdc6..8a3cccb 100644 --- a/blog/_layouts/post.html +++ b/blog/_layouts/post.html @@ -5,9 +5,11 @@ layout: default <article class="post"> {% include post-header.html post = page %} <section class="post-body"> - {% if page.page-image %} - {{ page.page-image | img: "magick:resize:590x" }} - {% endif %} + <div class="post-image"> + {% if page.page-image %} + {{ page.page-image | img: "magick:resize:590x" }} + {% endif %} + </div> {{ content }} </section> <footer> |