# HG changeset patch # User Bob Mourlam # Date 1320722532 21600 # Node ID 9936cae358d979d61b1c05a6f67c56ec9381f5c4 # Parent 66a3cafc4548e76ddb0039f700c75f36fd3612cc I removed some unused clutter from the news_list.html template. I moved the date to the title line, which looks a lot better I think. I made the space between articles 2em and added a border at the top of each article. I'm not sure I like it, but it's better I think. diff -r 66a3cafc4548 -r 9936cae358d9 bns_website/static/css/base.css --- a/bns_website/static/css/base.css Mon Nov 07 21:20:29 2011 -0600 +++ b/bns_website/static/css/base.css Mon Nov 07 21:22:12 2011 -0600 @@ -24,6 +24,8 @@ li.review-list-item { margin-bottom: 30px; } -.article { - margin-bottom: 1.5em; + +article.news { + margin-bottom: 2em; + border-top: 2px solid DimGray; /* some other gray color might be better */ } \ No newline at end of file diff -r 66a3cafc4548 -r 9936cae358d9 bns_website/templates/news/news_list.html --- a/bns_website/templates/news/news_list.html Mon Nov 07 21:20:29 2011 -0600 +++ b/bns_website/templates/news/news_list.html Mon Nov 07 21:22:12 2011 -0600 @@ -5,21 +5,17 @@ {% block content %} {% navbar 'news' %}

News

-
+ {% for news in object_list %} - {% endfor %} -
{% endblock %}