Skip to content

Commit

Permalink
I added the Youtube link for Level 7
Browse files Browse the repository at this point in the history
  • Loading branch information
bella054 committed Jan 16, 2025
1 parent ef65446 commit eefb9ae
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions game/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,23 @@ def title_level7():


def description_level7():
message = (
message = youtube_link(
"https://www.youtube.com/embed/Lw-MMIlGU1Y?si=afJ-mzDFsUTizE1Q", 0
)

message += (
"<div class='popup_message'>"
f"This video introduces variable-type blocks in Blockly. "
f"These blocks let you store numbers and use them in your code to make it more efficient. "
f"Practise your new skills on this road by helping the driver to arrive at "
f"the house. <br> When you are happy with your sequence, press "
f"{play_button_icon_url()}!"
"</div>"
)

return build_description(
title_level7(), f"<div class='main_popup_container'>{message}</div>"
)
return build_description(title_level7(), message)


def hint_level7():
Expand Down

0 comments on commit eefb9ae

Please sign in to comment.