Skip to content

Commit

Permalink
Insert space
Browse files Browse the repository at this point in the history
This should improve readability because now the date and the title are separated by a space.
  • Loading branch information
okin committed Jan 6, 2016
1 parent 0f29307 commit 8829c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/data/themes/base/templates/tag.tmpl
Expand Up @@ -43,7 +43,7 @@
%if posts:
<ul class="postlist">
% for post in posts:
<li><time class="listdate" datetime="${post.formatted_date('webiso')}" title="${post.formatted_date(date_format)|h}">${post.formatted_date(date_format)|h}</time><a href="${post.permalink()}" class="listtitle">${post.title()|h}<a></li>
<li><time class="listdate" datetime="${post.formatted_date('webiso')}" title="${post.formatted_date(date_format)|h}">${post.formatted_date(date_format)|h}</time> <a href="${post.permalink()}" class="listtitle">${post.title()|h}<a></li>
% endfor
</ul>
%endif
Expand Down

0 comments on commit 8829c3b

Please sign in to comment.