##// END OF EJS Templates
Added 'alt' attribute to the images to pass the validation. This fixes #2
neko259 -
r82:06eb531e default
parent child Browse files
Show More
@@ -30,8 +30,9 b''
30 30 {% if thread.image %}
31 31 <div class="image">
32 32 <a class="fancy"
33 href="{{ thread.image.url }}"><img
34 src="{{ thread.image.url_200x150 }}" />
33 href="{{ thread.image.url }}"><img
34 src="{{ thread.image.url_200x150 }}"
35 alt="{% trans 'Post image' %}" />
35 36 </a>
36 37 </div>
37 38 {% endif %}
@@ -73,8 +74,9 b''
73 74 {% if post.image %}
74 75 <div class="image">
75 76 <a class="fancy"
76 href="{{ post.image.url }}"><img
77 src="{{ post.image.url_200x150 }}" />
77 href="{{ post.image.url }}"><img
78 src=" {{ post.image.url_200x150 }}"
79 alt="{% trans 'Post image' %}" />
78 80 </a>
79 81 </div>
80 82 {% endif %}
@@ -23,7 +23,8 b''
23 23 <a
24 24 class="fancy"
25 25 href="{{ post.image.url }}"><img
26 src="{{ post.image.url_200x150 }}" />
26 src="{{ post.image.url_200x150 }}"
27 alt="{% trans 'Post image' %}" />
27 28 </a>
28 29 </div>
29 30 {% endif %}
General Comments 0
You need to be logged in to leave comments. Login now