diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-01-21 12:00:02 -0600 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-01-23 06:11:31 -0500 |
commit | 431677576603b58c42fc488f174ef0254a7a430c (patch) | |
tree | 731ae4d9c7c965536ef6c7ced18dc285b70a862c /hyperkitty/templates/threads | |
parent | 0f294dd468ceeaf6a18c0595c8058efd1503dfec (diff) | |
download | hyperkitty-431677576603b58c42fc488f174ef0254a7a430c.tar.gz hyperkitty-431677576603b58c42fc488f174ef0254a7a430c.tar.xz hyperkitty-431677576603b58c42fc488f174ef0254a7a430c.zip |
Switch to a fluid layout
Diffstat (limited to 'hyperkitty/templates/threads')
-rw-r--r-- | hyperkitty/templates/threads/month_list.html | 2 | ||||
-rw-r--r-- | hyperkitty/templates/threads/right_col.html | 11 |
2 files changed, 6 insertions, 7 deletions
diff --git a/hyperkitty/templates/threads/month_list.html b/hyperkitty/templates/threads/month_list.html index 4781ec4..66aa3f9 100644 --- a/hyperkitty/templates/threads/month_list.html +++ b/hyperkitty/templates/threads/month_list.html @@ -1,6 +1,6 @@ {% load hk_generic %} -<div id="archives"> +<div id="archives" class="span2"> {% for year, months in archives_length|sort %} <h3>{{ year }}</h3> <ul> diff --git a/hyperkitty/templates/threads/right_col.html b/hyperkitty/templates/threads/right_col.html index 7fa1743..73194df 100644 --- a/hyperkitty/templates/threads/right_col.html +++ b/hyperkitty/templates/threads/right_col.html @@ -4,19 +4,19 @@ <!-- right column --> <section id="thread_overview_info"> <!-- Start dates --> - <div id="thread_date_info"> - <div class="days_num inline-block"> + <div id="thread_date_info" class="row-fluid"> + <div class="days_num"> {{ days_inactive }} </div> - <div class="days_text inline-block"> + <div class="days_text"> days <br /> inactive </div> - <div id="days_old" class="days_num inline-block"> + <div class="days_num"> {{ days_old }} </div> - <div class="days_text inline-block"> + <div class="days_text"> days <br /> old @@ -28,7 +28,6 @@ </p> {% endif %} <!-- End dates --> - <hr id="grey"/> <div id="tags"> {% include 'threads/tags.html' %} </div> |