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

fix: update broken python and blockly documentation links #1721

Merged
merged 1 commit into from
Sep 4, 2024
Merged
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
2 changes: 1 addition & 1 deletion game/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -1951,7 +1951,7 @@ def hint_level91():

PYTHON_HINT = (
"<br /><br />Check our documentation site, to see "
"<a href='https://docs.codeforlife.education/rapid-router/python-commands' target='_blank'>the full list of commands</a>."
"<a href='https://code-for-life.gitbook.io/rapid-router/rapid-router-python-commands' target='_blank'>the full list of commands</a>."
"<br /><br />To learn more about Python in general, check this "
"<a href='https://wiki.python.org/moin/BeginnersGuide' target='_blank'>Beginner's Guide to Python</a>."
)
Expand Down
4 changes: 2 additions & 2 deletions game/templates/game/level_selection.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<div class="panel-intro">
<h4>Blockly levels</h4>
The first set of levels use Blockly to slowly introduce you to Python. You can read more about Blockly
<a href="https://docs.codeforlife.education/rapid-router/blockly-guide" target="_blank">here</a>.
<a href="https://code-for-life.gitbook.io/rapid-router/blockly-guide" target="_blank">here</a>.
</div>
{% for episode in blocklyEpisodes %}
<div class="panel">
Expand Down Expand Up @@ -126,7 +126,7 @@ <h4>Blockly levels</h4>
<div class="panel-intro">
<h4>Python levels</h4>
The next set of levels introduce you to coding directly with Python. You can read more about Python
<a href="https://docs.codeforlife.education/rapid-router/python-guide" target="_blank">here</a>.
<a href="https://code-for-life.gitbook.io/rapid-router/python-guide" target="_blank">here</a>.
</div>
{% for episode in oldPythonEpisodes %}
<div class="panel">
Expand Down