diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2013-12-23 20:36:48 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2013-12-23 20:36:48 +0100 |
commit | a6c3b6f6bb3aa603dd25d47f15f26e53d3427a5b (patch) | |
tree | dfa794d1fc6aeb7c79912759da29c0be73a15e9d /app/views | |
parent | 595b16a783b7a99cadbf7cd61086ead32c6298a9 (diff) | |
download | hmnoweb-a6c3b6f6bb3aa603dd25d47f15f26e53d3427a5b.tar.gz hmnoweb-a6c3b6f6bb3aa603dd25d47f15f26e53d3427a5b.tar.bz2 hmnoweb-a6c3b6f6bb3aa603dd25d47f15f26e53d3427a5b.zip |
Use blog category position to populate sidebars.
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/common/_left_sidebar.html.erb | 2 | ||||
-rw-r--r-- | app/views/common/_right_sidebar.html.erb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/common/_left_sidebar.html.erb b/app/views/common/_left_sidebar.html.erb index 968f1fa..37f8ccf 100644 --- a/app/views/common/_left_sidebar.html.erb +++ b/app/views/common/_left_sidebar.html.erb @@ -1,3 +1,3 @@ <div id="left_sidebar"> - <%= render "common/sidebar_module", :modules => @sidebar_modules[:left] %> + <%= render "common/sidebar_module", :modules => @sidebar_modules[1] %> </div> diff --git a/app/views/common/_right_sidebar.html.erb b/app/views/common/_right_sidebar.html.erb index 1707324..c9a3ca6 100644 --- a/app/views/common/_right_sidebar.html.erb +++ b/app/views/common/_right_sidebar.html.erb @@ -1,3 +1,3 @@ <div id="right_sidebar"> -No content yet, but that will hopefully change soon! + <%= render "common/sidebar_module", :modules => @sidebar_modules[2] %> </div> |