From c40be56545f4f3fb5728523b0913d58329699185 Mon Sep 17 00:00:00 2001 From: jakeymac Date: Fri, 10 Jan 2025 15:04:52 -0700 Subject: [PATCH] fixed missing forward slash in tutorial code block --- docs/tutorials/google_earth_engine/part_2/about_page.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/google_earth_engine/part_2/about_page.rst b/docs/tutorials/google_earth_engine/part_2/about_page.rst index df526e247..a25a887c9 100644 --- a/docs/tutorials/google_earth_engine/part_2/about_page.rst +++ b/docs/tutorials/google_earth_engine/part_2/about_page.rst @@ -85,7 +85,7 @@ To minimize the amount of code that is duplicated, you will create a new :file:` .. code-block:: html+django {% block header_buttons %} - {% include tethys_app.package|add:"header_buttons.html" %} + {% include tethys_app.package|add:"/header_buttons.html" %} {% endblock %} 3. The Home button is included in :file:`header_buttons.html` and provided by :file:`base.html`, so it will be removed from :file:`viewer.html`. Delete the ``header_buttons`` block in :file:`templates/earth_engine/viewer.html`: