File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
< div class ="col-md-3 get-started-cloud-sidebar ">
2
2
< div class ="sticky-top ">
3
3
< ul id ="get-started-contributor-sidebar-list ">
4
- {% assign past_issues = site.past_issues | sort_natural: "date" %}
4
+ {% assign past_issues = site.past_issues | sort_natural: "date" | reverse %}
5
5
6
6
{% for item in past_issues %}
7
7
{% assign currentdate = item.date | date: "%B %Y" %}
8
8
{% if currentdate != date %}
9
- < li > {{ currentdate }}</ li >
10
9
{% assign date = currentdate %}
11
10
{% endif %}
12
11
13
12
< ul >
14
- < li > < a href ="#issue-{{ item.issue }} "> {{ item.title }}</ a > </ li >
13
+ < li > < a href ="#issue-{{ item.issue }} "> {{ date }}</ a > </ li >
15
14
</ ul >
16
15
{% endfor %}
17
16
</ ul >
Original file line number Diff line number Diff line change 4
4
{% include contributor_side_nav.html %}
5
5
< div class ="col-md-8 offset-md-1 container ">
6
6
< div class ="row main-content blog-detail-content contributor-sidebar ">
7
- {% assign past_issues = site.past_issues | sort: "title" %}
7
+ {% assign past_issues = site.past_issues | sort: "title" | reverse %}
8
8
{% for item in past_issues %}
9
9
< article class ="pytorch-article ">
10
10
{{ item | markdownify }}
Original file line number Diff line number Diff line change 1
1
article .pytorch-article {
2
2
max-width : 920px ;
3
3
margin : 0 auto ;
4
+ padding-bottom : 90px ;
4
5
5
6
h2 ,
6
7
h3 ,
You can’t perform that action at this time.
0 commit comments