change div to span inside label according to html5 standarts

This commit is contained in:
arcan1s
2014-08-25 22:18:47 +04:00
parent e280ce1020
commit a5e4391249
6 changed files with 16 additions and 16 deletions

View File

@ -18,7 +18,7 @@ hastr: true
{% endfor %}
<label class="spoiler">
<input type="checkbox" tabindex="-1">
<div class="box">
<span class="box">
<b>{{ month }}</b>
<span class="close" style="float:right;">(hide)</span><span class="open" style="float:right;">(show)</span>
<blockquote>
@ -26,11 +26,11 @@ hastr: true
{% assign new_month = post.date | date: "%Y" %}
{% if new_month != month %}
</blockquote>
</div>
</span>
</label>
<label class="spoiler">
<input type="checkbox" tabindex="-1">
<div class="box">
<span class="box">
<b>{{ new_month }}</b>
<span class="close" style="float:right;">(hide)</span><span class="open" style="float:right;">(show)</span>
<blockquote>
@ -41,5 +41,5 @@ hastr: true
<a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> ({{ post.tags }})<br>
{% endfor %}
</blockquote>
</div>
</span>
</label>