forked from hedyorg/hedy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CONTENT] Add join route (hedyorg#3312)
Adds new /join route with info targeted at new contributors
- Loading branch information
Showing
5 changed files
with
62 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1026,18 +1026,10 @@ learn-more-sections: | |
- title: "Do you like Hedy?" | ||
text: | | ||
We love to hear from you! | ||
[Click here to send us a message](mailto:[email protected] "About Hedy") | ||
- title: "Found a bug?" | ||
text: | | ||
[Let us know on GitHub](https://github.com/Felienne/hedy/issues/new/choose) | ||
- title: "Want to help?" | ||
text: | | ||
The easiest way is to help with [translating Hedy](https://github.com/Felienne/hedy/blob/main/TRANSLATING.md) | ||
Below the current status, help us complete a language, or add a new one. | ||
<a href="https://hosted.weblate.org/engage/hedy/"> | ||
<img src="https://hosted.weblate.org/widgets/hedy/-/multi-auto.svg" alt="Translation status" /></a> | ||
- title: "Code week talk" | ||
text: | | ||
Want to know more about Hedy? Check out this talk Felienne gave at the European Code Week 2020: | ||
|
@@ -1096,3 +1088,25 @@ start-sections: | |
- title: "Do I need to install anything?" | ||
text: |- | ||
No. Hedy works in the browser, which is the program you are using to look at this page. Probably Chrome or Edge or Firefox. Hedy also works on your phone or tablet. | ||
join-sections: | ||
- title: "" | ||
text: | | ||
# There are three ways in which you can support Hedy! | ||
- title: "Improving the language" | ||
text: | | ||
The gradual and multi-lingual nature of Hedy create a lot of interesting technical challenges. | ||
Find those issues on [Github](https://github.com/Felienne/hedy/issues?q=is%3Aopen+is%3Aissue+label%3Alanguage). | ||
- title: "Translating Hedy" | ||
text: | | ||
Not a programmer? No problem! Another way to support Hedy is by [translating keywords, error messages, adventures are other content](https://github.com/Felienne/hedy/blob/main/TRANSLATING.md) | ||
This is the current status, help us complete a language, or add a new one! | ||
<a href="https://hosted.weblate.org/engage/hedy/"> | ||
<img src="https://hosted.weblate.org/widgets/hedy/-/multi-auto.svg" alt="Translation status" /></a> | ||
- title: "Help teachers get started" | ||
text: | | ||
Hedy is designed to support teachers in providing programming lessons in class. We have specific teacher features like the option to create a class, customize it and see how your students are doing. | ||
If you like Hedy, you can reach out to schools that you know to help teachers get started! We can help you find schools or teachers via [Discord](https://discord.gg/8yY7dEme9r). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% extends "auth.html" %} | ||
|
||
{% block main %} | ||
<div class="w-full mx-auto flex flex-col gap-4"> | ||
<div id="learn_more_content" class="text-xl"> | ||
{% for section in content['join-sections'] %} | ||
<h2>{{ section['title'] }}</h2> | ||
<p>{{ section['text'] | commonmark }}</p> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
{% endblock %} |