Commit aa42958 1 parent 9b830f9 commit aa42958 Copy full SHA for aa42958
File tree 8 files changed +9
-7
lines changed
bootstrap3-jinja/assets/css
8 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ Features
14
14
Bugfixes
15
15
--------
16
16
17
+ * Display tags and archives in a unified format, with the date on the
18
+ left, instead of a misplaced dash in tags (Issue #2212)
17
19
* Decide is_mathjax based on current language tags (Issue #2205)
18
20
* Don't duplicate images in flowr when resizing page (Issue #2202)
19
21
Original file line number Diff line number Diff line change 35
35
{% if posts %}
36
36
<ul class="postlist">
37
37
{% for post in posts %}
38
- <li><a href=" {{ post.permalink( ) }}" class="listtitle"> {{ post.title( )|e }}</a><time class="listdate" datetime=" {{ post.formatted_date('webiso') }}" title ="{{ post.formatted_date(date_format)|e }}">{{ post.formatted_date(date_format )|e }}</time ></li>
38
+ <li><time class="listdate" datetime=" {{ post.formatted_date('webiso' ) }}" title=" {{ post.formatted_date(date_format )|e }}"> {{ post.formatted_date(date_format)|e }}</time> <a href ="{{ post.permalink() }}" class="listtitle" >{{ post.title( )|e }}</a ></li>
39
39
{% endfor %}
40
40
</ul>
41
41
{% endif %}
Original file line number Diff line number Diff line change 9
9
{% if posts %}
10
10
<ul class="postlist">
11
11
{% for post in posts %}
12
- <li><a href=" {{ post.permalink( ) }}" class="listtitle"> {{ post.title( )|e }}</a> <time class="listdate" datetime=" {{ post.formatted_date('webiso') }}" title ="{{ post.formatted_date(date_format)|e }}">{{ post.formatted_date(date_format )|e }}</time ></li>
12
+ <li><time class="listdate" datetime=" {{ post.formatted_date('webiso' ) }}" title=" {{ post.formatted_date(date_format )|e }}"> {{ post.formatted_date(date_format)|e }}</time> <a href ="{{ post.permalink() }}" class="listtitle" >{{ post.title( )|e }}</a ></li>
13
13
{% endfor %}
14
14
</ul>
15
15
{% else %}
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ body {
120
120
}
121
121
.metadata p : before ,
122
122
.postpromonav .tags li : before ,
123
- .postlist .listdate : before {
123
+ .postlist .listdate : after {
124
124
content : " — " ;
125
125
}
126
126
.postlist li {
Original file line number Diff line number Diff line change 35
35
%if posts:
36
36
<ul class="postlist">
37
37
% for post in posts:
38
- <li><a href=" ${post.permalink( )}" class="listtitle ">${post.title( )|h}</a><time class="listdate" datetime=" ${post.formatted_date('webiso' )}" title="${post.formatted_date(date_format)|h} ">${post.formatted_date(date_format )|h}</time ></li>
38
+ <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>
39
39
% endfor
40
40
</ul>
41
41
%endif
Original file line number Diff line number Diff line change 9
9
%if posts:
10
10
<ul class="postlist">
11
11
% for post in posts:
12
- <li><a href=" ${post.permalink( )}" class="listtitle ">${post.title( )|h}</a > <time class="listdate" datetime=" ${post.formatted_date('webiso' )}" title="${post.formatted_date(date_format)|h} ">${post.formatted_date(date_format )|h}</time ></li>
12
+ <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>
13
13
% endfor
14
14
</ul>
15
15
%else:
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ article.post-micro {
118
118
}
119
119
120
120
.metadata p : before ,
121
- .postlist .listdate : before {
121
+ .postlist .listdate : after {
122
122
content : " — " ;
123
123
}
124
124
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ article.post-micro {
118
118
}
119
119
120
120
.metadata p : before ,
121
- .postlist .listdate : before {
121
+ .postlist .listdate : after {
122
122
content : " — " ;
123
123
}
124
124
You can’t perform that action at this time.
0 commit comments