diff --git a/static-site/config.toml b/static-site/config.toml index b8a1037..414935c 100644 --- a/static-site/config.toml +++ b/static-site/config.toml @@ -51,6 +51,7 @@ url = "https://www.linkedin.com/company/99059952" [extra.translations.en] home = "Home" +sponsors = "Sponsors" events = "Events" donate = "Donate" commercial_disclosure = "Commercial Disclosure" @@ -58,6 +59,7 @@ code_of_conduct = "Code of Conduct" [extra.translations.jp] home = "ホーム" +sponsors = "スポンサー" events = "イベント" donate = "寄付" commercial_disclosure = "特定商取引法に基づく表記" diff --git a/static-site/content/sponsors.jp.md b/static-site/content/sponsors.jp.md new file mode 100644 index 0000000..1adc2d4 --- /dev/null +++ b/static-site/content/sponsors.jp.md @@ -0,0 +1,12 @@ ++++ +title = "スポンサー" +template = "sponsors.html" + +[[extra.sponsor]] +name = "RustJobs.dev" +url = "https://rustjobs.dev" +logo_html = '''RustJobs''' +description = "RustJobs.devは、Rustエンジニアリング人材のための採用プラットフォームです。東京の求人も含め、多数の求人情報を掲載しています(私たちの協力により、今後さらに増えることを期待しています!)" ++++ + +東京Rustを支えてくださる寛大なスポンサーの皆様に感謝いたします!皆様のサポートにより、イベントの開催、軽食の提供、そしてコミュニティの構築を続けることができます。 diff --git a/static-site/content/sponsors.md b/static-site/content/sponsors.md new file mode 100644 index 0000000..4a28ab2 --- /dev/null +++ b/static-site/content/sponsors.md @@ -0,0 +1,12 @@ ++++ +title = "Our Sponsors" +template = "sponsors.html" + +[[extra.sponsor]] +name = "RustJobs.dev" +url = "https://rustjobs.dev" +logo_html = '''RustJobs''' +description = "RustJobs.dev is the go-to hiring platform for Rust Engineering Talent. They have tons of job listings, including a few in Tokyo (hopefully with our help more soon!)" ++++ + +Thank you to our generous sponsors who help make Tokyo Rust possible! Their support enables us to host events, provide refreshments, and continue building our community. diff --git a/static-site/mise.toml b/static-site/mise.toml new file mode 100644 index 0000000..e15e320 --- /dev/null +++ b/static-site/mise.toml @@ -0,0 +1,11 @@ +[tools] +zola = "latest" + +[tasks.init] +description = "Initialize Zola and dependencies" +run = "npm i" + +[tasks.dev] +description = "Run Zola in serve/dev mode" +depends = ["init"] +run = "zola serve" diff --git a/static-site/templates/footer.html b/static-site/templates/footer.html index cd51d87..f1c8188 100644 --- a/static-site/templates/footer.html +++ b/static-site/templates/footer.html @@ -1,3 +1,4 @@ +{% import "macros.tera.html" as macros %}