##// 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 {% if thread.image %}
30 {% if thread.image %}
31 <div class="image">
31 <div class="image">
32 <a class="fancy"
32 <a class="fancy"
33 href="{{ thread.image.url }}"><img
33 href="{{ thread.image.url }}"><img
34 src="{{ thread.image.url_200x150 }}" />
34 src="{{ thread.image.url_200x150 }}"
35 alt="{% trans 'Post image' %}" />
35 </a>
36 </a>
36 </div>
37 </div>
37 {% endif %}
38 {% endif %}
@@ -73,8 +74,9 b''
73 {% if post.image %}
74 {% if post.image %}
74 <div class="image">
75 <div class="image">
75 <a class="fancy"
76 <a class="fancy"
76 href="{{ post.image.url }}"><img
77 href="{{ post.image.url }}"><img
77 src="{{ post.image.url_200x150 }}" />
78 src=" {{ post.image.url_200x150 }}"
79 alt="{% trans 'Post image' %}" />
78 </a>
80 </a>
79 </div>
81 </div>
80 {% endif %}
82 {% endif %}
@@ -23,7 +23,8 b''
23 <a
23 <a
24 class="fancy"
24 class="fancy"
25 href="{{ post.image.url }}"><img
25 href="{{ post.image.url }}"><img
26 src="{{ post.image.url_200x150 }}" />
26 src="{{ post.image.url_200x150 }}"
27 alt="{% trans 'Post image' %}" />
27 </a>
28 </a>
28 </div>
29 </div>
29 {% endif %}
30 {% endif %}
General Comments 0
You need to be logged in to leave comments. Login now