diff options
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> |