Skip to content

Commit 8829c3b

Browse files
committedJan 6, 2016
Insert space
This should improve readability because now the date and the title are separated by a space.
1 parent 0f29307 commit 8829c3b

File tree

1 file changed

+1
-1
lines changed
  • nikola/data/themes/base/templates

1 file changed

+1
-1
lines changed
 

‎nikola/data/themes/base/templates/tag.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
%if posts:
4444
<ul class="postlist">
4545
% for post in posts:
46-
<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>
46+
<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>
4747
% endfor
4848
</ul>
4949
%endif

0 commit comments

Comments
 (0)
Please sign in to comment.