File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 20
20
- uses : actions/checkout@v2
21
21
22
22
- name : ' Download Zola'
23
- run : curl -sL https://github.com/getzola/zola/releases/download/v0.11.0 /zola-v0.11.0 -x86_64-unknown-linux-gnu.tar.gz | tar zxv
23
+ run : curl -sL https://github.com/getzola/zola/releases/download/v0.12.2 /zola-v0.12.2 -x86_64-unknown-linux-gnu.tar.gz | tar zxv
24
24
25
25
- name : " Build Site"
26
26
run : ./zola build
39
39
- uses : actions/checkout@v2
40
40
41
41
- name : ' Download Zola'
42
- run : curl -sL https://github.com/getzola/zola/releases/download/v0.11.0 /zola-v0.11.0 -x86_64-unknown-linux-gnu.tar.gz | tar zxv
42
+ run : curl -sL https://github.com/getzola/zola/releases/download/v0.12.2 /zola-v0.12.2 -x86_64-unknown-linux-gnu.tar.gz | tar zxv
43
43
44
44
- name : " Run zola check"
45
45
run : ./zola check
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ <h2>This Month in Rust OSDev</h2>
11
11
< p > {{ section.description }}</ p >
12
12
< ul >
13
13
{% for page in section.pages %}
14
- < li > < a href ="/ {{ page.path | safe }} "> {{ page.extra.month }}</ a > </ li >
14
+ < li > < a href ="{{ page.path | safe }} "> {{ page.extra.month }}</ a > </ li >
15
15
{% endfor %}
16
16
</ ul >
17
17
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ <h1>{{ page.title }}</h1>
26
26
< hr >
27
27
< div class ="PageNavigation ">
28
28
{% if page.earlier %}
29
- < a class ="prev " href ="/ {{ page.earlier.path | safe }} "> « {{ page.earlier.title }}</ a >
29
+ < a class ="prev " href ="{{ page.earlier.path | safe }} "> « {{ page.earlier.title }}</ a >
30
30
{% endif %}
31
31
{% if page.later %}
32
- < a class ="next " href ="/ {{ page.later.path | safe }} "> {{ page.later.title }} »</ a >
32
+ < a class ="next " href ="{{ page.later.path | safe }} "> {{ page.later.title }} »</ a >
33
33
{% endif %}
34
34
</ div >
35
35
{% endblock after_main %}
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ <h1>{{ section.title }}</h1>
12
12
13
13
< div class ="posts ">
14
14
{% for page in section.pages %}
15
- < h2 class ="post-title "> < a href ="/ {{ page.path | safe }} "> {{ page.title }}</ a > </ h2 >
15
+ < h2 class ="post-title "> < a href ="{{ page.path | safe }} "> {{ page.title }}</ a > </ h2 >
16
16
< div class ="post-summary ">
17
17
{{ page.summary | safe }}
18
- < a class ="read-more " href ="/ {{ page.path | safe }} "> < em > read more »</ em > </ a >
18
+ < a class ="read-more " href ="{{ page.path | safe }} "> < em > read more »</ em > </ a >
19
19
</ div >
20
20
{% endfor %}
21
21
</ div >
You can’t perform that action at this time.
0 commit comments