Skip to content

Commit 647aa63

Browse files
committed
Port the site from Middleman to Zola
1 parent ddd61bb commit 647aa63

File tree

145 files changed

+1180
-952
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+1180
-952
lines changed

.gitignore

+5-23
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,6 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
2-
#
3-
# If you find yourself ignoring temporary files generated by your text editor
4-
# or operating system, you probably want to add a global ignore instead:
5-
# git config --global core.excludesfile ~/.gitignore_global
1+
/public/
62

7-
# Ignore bundler config
8-
/.bundle
9-
10-
# Ignore the build directory
11-
/build
12-
13-
/vendor
14-
15-
# Ignore cache
16-
/.sass-cache
17-
/.cache
18-
19-
# Ignore .DS_store file
20-
.DS_Store
21-
22-
# Switching between the zola and source branches creates lots of untracked
23-
# files. Ignore them.
24-
/public
3+
# tmp
4+
/.bundle/
5+
/build/
6+
/vendor/

.vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"files.associations": {
3+
"*.html": "tera"
4+
}
5+
}

Gemfile

-19
This file was deleted.

Gemfile.lock

-151
This file was deleted.

LICENSE

-20
This file was deleted.

Rakefile

-58
This file was deleted.

config.rb

-44
This file was deleted.

config.toml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# The URL the site will be built for
2+
base_url = "https://www.ruma.io"
3+
4+
# Whether to automatically compile all Sass files in the sass directory
5+
compile_sass = true
6+
7+
# Whether to do syntax highlighting
8+
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
9+
highlight_code = true
10+
highlight_theme = "cheerfully-light"
11+
12+
# Whether to build a search index to be used later on by a JavaScript library
13+
build_search_index = false
14+
15+
[extra]
16+
17+
[[extra.nav_links]]
18+
title = "Home"
19+
href = "/"
20+
21+
[[extra.nav_links]]
22+
title = "News"
23+
href = "/news/"
24+
25+
[[extra.nav_links]]
26+
title = "Projects"
27+
href = "/projects/"
28+
29+
[[extra.nav_links]]
30+
title = "How to Contribute"
31+
href = "/contributing/"
32+
33+
[[extra.nav_links]]
34+
title = "Donate on Liberapay"
35+
href = "https://liberapay.com/ruma/"
36+
37+
[[extra.nav_links]]
38+
title = "Documentation"
39+
href = "/docs/"

0 commit comments

Comments
 (0)