Skip to content

Commit 5e8db6a

Browse files
Update Zola to 0.11 (#261)
1 parent 67052b8 commit 5e8db6a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
env:
99
BASE_URL: https://github.com/getzola/zola/releases/download
10-
VERS: v0.10.1
10+
VERS: v0.11.0
1111
ARCH: x86_64-unknown-linux-gnu
1212
# https://github.com/marketplace/actions/github-pages#warning-limitation
1313
GITHUB_PAT: ${{ secrets.GITHUB_PAT }}

config.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ base_url = "https://rust-gamedev.github.io/"
44
default_language = "en"
55
compile_sass = true
66
highlight_code = true
7-
generate_rss = true
7+
generate_feed = true
8+
feed_filename = "rss.xml"
89

910
[extra]
1011
date_format = "%F"

sass/_extra.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ li {
77
margin: 15px 0;
88
}
99

10+
pre > code {
11+
// To avoid grey background on code blocks.
12+
background-color: inherit;
13+
}
14+
1015
.intro {
1116
color: #ffffff;
1217
background-color: $brand-color;

0 commit comments

Comments
 (0)