Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various changes #601

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ public
content/assets
content/learn/errors
content/examples
content/community/people
content/community/donate
static/assets/examples
static/processed_images
.vscode/
.vscode/
community_members.json
org_members.json
static/community_profile_picture
5 changes: 0 additions & 5 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ build_search_index = true

generate_feed = true
rss_limit = 1000
highlight_theme = "charcoal"

taxonomies = [
{name = "news", feed = true},
]

[markdown]
# Whether to do syntax highlighting
Expand Down
7 changes: 7 additions & 0 deletions content/community/donate/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
+++
title = "Supporting Bevy Development"
template = "donate.html"

[extra]
header_message = "Supporting Bevy"
+++
7 changes: 7 additions & 0 deletions content/community/people/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
+++
title = "People"
template = "people.html"

[extra]
header_message = "People"
+++
5 changes: 5 additions & 0 deletions content/community/people/community/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
title = "Community Members"
render = false
weight = 2
+++
5 changes: 5 additions & 0 deletions content/community/people/org/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
title = "The Bevy Organization"
render = false
weight = 1
+++
4 changes: 0 additions & 4 deletions content/faq/index.md
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This existed as an "actual page" because we want to be able to link to bevyengine.org/faq as a nice sharable / short link to the github discussions query

This file was deleted.

File renamed without changes.
125 changes: 107 additions & 18 deletions generate-community/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion generate-community/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ edition = "2021"

[dependencies]
serde = { version = "1", features = [ "derive" ] }
toml = "0.5"
serde_json = "1.0.94"
toml = "0.7"
regex = "1.5"
rand = "0.8"
unicode-segmentation = "1.10"
2 changes: 1 addition & 1 deletion generate-community/generate_community.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ git remote add origin https://github.com/bevyengine/bevy-community
git pull --depth=1 origin main
cd ..

cargo run --bin generate -- bevy-community ../content/ community
cargo run --bin generate -- bevy-community ../content/
Loading