diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-10-30 19:37:32 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-10-30 19:37:32 +0100 |
commit | 6273efb0f90255dea2c8db3e94de466f8022335a (patch) | |
tree | ef1d3a33cb3dcb4a244fb526524cccf4f2a547f5 /hyperkitty/templates/threads | |
parent | 04d00335f7a9ef541c7a68fc7eeb161a7163045b (diff) | |
download | hyperkitty-6273efb0f90255dea2c8db3e94de466f8022335a.tar.gz hyperkitty-6273efb0f90255dea2c8db3e94de466f8022335a.tar.xz hyperkitty-6273efb0f90255dea2c8db3e94de466f8022335a.zip |
Do some CSS refactoring
Diffstat (limited to 'hyperkitty/templates/threads')
-rw-r--r-- | hyperkitty/templates/threads/month_list.html | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/hyperkitty/templates/threads/month_list.html b/hyperkitty/templates/threads/month_list.html index d642567..85af7b6 100644 --- a/hyperkitty/templates/threads/month_list.html +++ b/hyperkitty/templates/threads/month_list.html @@ -3,15 +3,13 @@ <div id="archives"> {% for year, months in archives_length|sort %} <h3>{{ year }}</h3> - <div> - <ul> - {% for ar_month in months %} - <li class="{% if year == month.year and ar_month == month.month %}current{% endif %}"> - <a href="{% url archives_with_month year=year, mlist_fqdn=list_address, month=ar_month %}" - >{{ ar_month|monthtodate:year|date:"F" }}</a> - </li> - {% endfor %} - </ul> - </div> + <ul> + {% for ar_month in months %} + <li class="{% if year == month.year and ar_month == month.month %}current{% endif %}"> + <a href="{% url archives_with_month year=year, mlist_fqdn=list_address, month=ar_month %}" + >{{ ar_month|monthtodate:year|date:"F" }}</a> + </li> + {% endfor %} + </ul> {% endfor %} </div> |