diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2015-09-13 12:42:03 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2015-09-13 12:42:03 +0200 |
commit | 1114ff7947d742df516131c8d67609f31d6ee67a (patch) | |
tree | 0a42bed7afb3656f1deef29c7faab931f2951ddb /blog/index.html | |
parent | 78c50bf4993790a8a19f676f1ffc6099cf16978e (diff) | |
download | norsk-urskog-main-1114ff7947d742df516131c8d67609f31d6ee67a.tar.gz norsk-urskog-main-1114ff7947d742df516131c8d67609f31d6ee67a.tar.bz2 norsk-urskog-main-1114ff7947d742df516131c8d67609f31d6ee67a.zip |
Move news section to side-body.
Diffstat (limited to 'blog/index.html')
-rw-r--r-- | blog/index.html | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/blog/index.html b/blog/index.html index 0387f41..94f8e09 100644 --- a/blog/index.html +++ b/blog/index.html @@ -2,20 +2,24 @@ layout: default --- -{% tf home/intro.md %} - -<section id="news" class="wide"> - <h2>{% t home.latest_news %}</h2> - {% for p in paginator.posts %} - {% include post-excerpt.html post=p %} - {% endfor %} +<section id="body"> + {% tf home/intro.md %} +</section> - {% include pagination.html %} +<section id="side-body"> + <section id="news"> + <h2>{% t home.latest_news %}</h2> + {% for p in paginator.posts %} + {% include post-excerpt.html post=p %} + {% endfor %} -</section> + {% include pagination.html %} -{% if site.links %} - <section id="links"> - <h2>{% t home.links %}</h2> </section> -{% endif %} + + {% if site.links %} + <section id="links"> + <h2>{% t home.links %}</h2> + </section> + {% endif %} +</section> |