Skip to content
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.

Commit

Permalink
Merge pull request #118 from ryanpitts/development
Browse files Browse the repository at this point in the history
img cleanup
  • Loading branch information
ryanpitts committed Oct 30, 2012
2 parents 170e840 + b8530b6 commit a07c62f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion media/css/app.css
Expand Up @@ -476,7 +476,7 @@ h1.maintopic {
}

.image-full-width-wrapper {
width: 100%;
width: 99%;
margin-bottom: 1em;
}

Expand Down
2 changes: 1 addition & 1 deletion source/articles/templates/articles/_article_list_item.html
@@ -1,7 +1,7 @@
{# standard presentation block for an article in list and search results pages #}
<div class="page-block">
<h2>{% include "articles/_article_category_and_tags_overline.html" %}<a href="{{ article.get_absolute_url() }}">{{ article.title }}</a></h2>
{% if article.image %}<img class="list-thumbnail" src="{{ MEDIA_URL }}{{ thumbnail(article.image, "300x240", crop="center") }}" alt="{{ article.title }}">{% endif %}
{% if article.image %}<a href="{{ article.get_absolute_url() }}"><img class="list-thumbnail" src="{{ MEDIA_URL }}{{ thumbnail(article.image, "300x240", crop="center") }}" alt="{{ article.title }}"></a>{% endif %}
<ul class="link-list link-list-inline">
{% if article.get_live_author_set().exists() %}<li>{% with author_list = article.get_live_author_set() %}{% include "articles/_article_author_list.html" %}{% endwith %}</li>{% endif %}
{% with person_link_list = article.get_live_people_set() %}
Expand Down

0 comments on commit a07c62f

Please sign in to comment.