diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 48da783..9d975dd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -51,10 +51,12 @@ jobs: npx @tailwindcss/cli -m --optimize -i styles/tailwind.css -o public/main.t.css - name: Setup Pages + if: github.ref == 'refs/heads/main' uses: actions/configure-pages@v4 - name: Upload artifact uses: actions/upload-pages-artifact@v3 + if: github.ref == 'refs/heads/main' with: path: "./public" diff --git a/config.toml b/config.toml index e4879d8..9f9ccc6 100644 --- a/config.toml +++ b/config.toml @@ -32,8 +32,10 @@ twitter = "https://twitter.com/rustmunich" youtube = "https://www.youtube.com/@rustmunichmeetup4459/streams" discord = "https://discord.gg/SdB7yuEB" slides_github = "https://github.com/rust-munich/slides" +github_org = "https://github.com/rust-munich/" website_github = "https://github.com/rust-munich/website" meetup = "https://www.meetup.com/de-DE/rust-munich/" +linkedin = "https://www.linkedin.com/groups/9802799/" logo_svg = "img/rust-munich-logo.svg" # This boolean is used by templates to hide/show draft notices show_drafts = false diff --git a/content/about/index.md b/content/about/index.md index 18e6631..d0669f4 100644 --- a/content/about/index.md +++ b/content/about/index.md @@ -12,3 +12,26 @@ Rust Munich uses the [Berlin Code of Conduct](https://berlincodeofconduct.org). Our primary goal is to be inclusive to the largest number of contributors, with the most varied and diverse backgrounds possible. If you experience or witness a violation, contact the organizers in person at events or by email. + +## Link tree + +- {{ meetup_link(text="Meetup.com group") }} +- {{ discord_link(text="Discord server") }} +- {{ github_link(text="GitHub organization") }} +- {{ twitter_link(text="Twitter") }} +- {{ youtube_link(text="YouTube") }} +- {{ linkedin_link(text="LinkedIn group") }} + +## The Team + +### Current Organizers + +**Ludwig** Rustacean since Rust 1.0 and experienced software engineer with a background in engineering physics and over two decades in software development across aerospace, automotive, and security domains. + +**Sven** is a passionate Rustacean and software engineer with a background in computer science and over two decades of experience in software development. He enjoys building open source tools and fostering community engagement. + +**Jonas** is a software engineer with professional experience in C++ and Rust. He has a passion for system-level software, including embedded devices, databases and distributed systems. + +### Alumni + +**Bernhard** was instrumental in getting Rust Munich off the ground. His passion for building inclusive tech communities and knack for organizing events that people actually want to attend helped shape what we are today. Though he's moved on to new adventures, his influence on our community spirit lives on. diff --git a/templates/base.html b/templates/base.html index 6707f3d..194ef7f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -140,7 +140,21 @@

Connect

+ + + + + {{ text }} \ No newline at end of file diff --git a/templates/shortcodes/github_link.html b/templates/shortcodes/github_link.html index 2df62d2..3990974 100644 --- a/templates/shortcodes/github_link.html +++ b/templates/shortcodes/github_link.html @@ -1,3 +1,3 @@ -{{ text | default(value="website @ github.com") }}{{ text | default(value="rust munich @ github") }} diff --git a/templates/shortcodes/icon.html b/templates/shortcodes/icon.html new file mode 100644 index 0000000..82f2f63 --- /dev/null +++ b/templates/shortcodes/icon.html @@ -0,0 +1,17 @@ +{% if name == "location" %} + + + +{% elif name == "job-type" %} + + + +{% elif name == "remote" %} + + + +{% elif name == "experience" %} + + + +{% endif %} \ No newline at end of file diff --git a/templates/shortcodes/linkedin_link.html b/templates/shortcodes/linkedin_link.html new file mode 100644 index 0000000..f657478 --- /dev/null +++ b/templates/shortcodes/linkedin_link.html @@ -0,0 +1,3 @@ +{{ text | default(value="rust munich @ linkedin") }} diff --git a/templates/shortcodes/twitter_link.html b/templates/shortcodes/twitter_link.html new file mode 100644 index 0000000..2bb3999 --- /dev/null +++ b/templates/shortcodes/twitter_link.html @@ -0,0 +1,3 @@ +{{ text | default(value="rust munich @ twitter") }} diff --git a/templates/shortcodes/youtube_link.html b/templates/shortcodes/youtube_link.html new file mode 100644 index 0000000..06808f7 --- /dev/null +++ b/templates/shortcodes/youtube_link.html @@ -0,0 +1,3 @@ +{{ text | default(value="rust munich @ youtube") }}