File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ <h1>Portfolio</h1>
11
11
< ul >
12
12
< li > < a href ="/portfolio/recent/ "> Most Recent</ a > </ li >
13
13
{% for category in site.categories %}
14
- < li > < a href ="/portfolio/{{ category[0] | replace:' ', '-' | downcase }} "> {{ category[0] }}</ a > </ li >
14
+ < li > < a href ="/portfolio/{{ category[0] | replace:' ', '-' | downcase }} "> {{ category[0] | capitalize }}</ a > </ li >
15
15
{% endfor %}
16
16
< li > < a href ="/portfolio/ "> Archives</ a > </ li >
17
17
</ ul >
18
18
</ div >
19
- </ div >
19
+ </ div >
Original file line number Diff line number Diff line change 1
1
---
2
2
layout: 2-column
3
- title: Design
3
+ title: Development
4
4
---
5
- {% for post in site.categories['Development'] limit: 10 %}
5
+ {% for post in site.categories.development limit: 10 %}
6
6
< div class ="post ">
7
7
< h2 >
8
8
< a href ="{{ post.url }} "> {{ post.title }}</ a >
11
11
{{ post.content | markdownify | html_truncatewords }}
12
12
</ div >
13
13
< hr >
14
- {% endfor %}
14
+ {% endfor %}
Original file line number Diff line number Diff line change 2
2
layout: 2-column
3
3
title: Portals
4
4
---
5
- {% for post in site.categories['Portals'] limit: 10 %}
5
+ {% for post in site.categories.portals limit: 10 %}
6
6
< div class ="post ">
7
7
< h2 >
8
8
< a href ="{{ post.url }} "> {{ post.title }}</ a >
11
11
{{ post.content | markdownify | html_truncatewords }}
12
12
</ div >
13
13
< hr >
14
- {% endfor %}
14
+ {% endfor %}
Original file line number Diff line number Diff line change 2
2
layout: 2-column
3
3
title: Visualizations
4
4
---
5
- {% for post in site.categories['Visualizations'] limit: 10 %}
5
+ {% for post in site.categories.visualizations limit: 10 %}
6
6
< div class ="post ">
7
7
< h2 >
8
8
< a href ="{{ post.url }} "> {{ post.title }}</ a >
11
11
{{ post.content | markdownify | html_truncatewords }}
12
12
</ div >
13
13
< hr >
14
- {% endfor %}
14
+ {% endfor %}
You can’t perform that action at this time.
0 commit comments