##// 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
@@ -31,7 +31,8 b''
31 31 <div class="image">
32 32 <a class="fancy"
33 33 href="{{ thread.image.url }}"><img
34 src="{{ thread.image.url_200x150 }}" />
34 src="{{ thread.image.url_200x150 }}"
35 alt="{% trans 'Post image' %}" />
35 36 </a>
36 37 </div>
37 38 {% endif %}
@@ -74,7 +75,8 b''
74 75 <div class="image">
75 76 <a class="fancy"
76 77 href="{{ post.image.url }}"><img
77 src="{{ post.image.url_200x150 }}" />
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