Example Past Project#

2023#

Insert you title here#

Authors: Author names

Teaching assistants: TA names

# @markdown
from ipywidgets import widgets
from IPython.display import IFrame

filename = "2023SLR_Investigating_the_relationship_between_sea_level_rise_and_extreme_events_in_Indonesia"

download_link = f"https://github.com/ClimateMatchAcademy/course-content/blob/main/projects/past-projects/{filename}.pdf"
render_link = f"https://nbviewer.org/github/ClimateMatchAcademy/course-content/blob/main/projects/past-projects/{filename}.pdf"

# @markdown
out = widgets.Output()
with out:
    print(f"If you want to download the slides: {download_link}")
    display(IFrame(src=f"{render_link}", width=730, height=410))
display(out)

NOTE: you should add as many past projects as you have by including a markdown header cell, and a code cell importing the slide like above#