You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: templates/layouts/base.html
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,10 +40,12 @@
40
40
{% set show_nav_toggle = true %}
41
41
{% elif section.path is starting_with("/assets/") %}
42
42
{% set show_nav_toggle = true %}
43
+
{% elif section.path is starting_with("/contributing/") %}
44
+
{% set show_nav_toggle = true %}
43
45
{% endif %}
44
46
{% elif page %}
45
47
{% if page.path is starting_with("/learn/book/") or page.path is starting_with("/learn/migration-guides/") or page.path is starting_with("/learn/errors/") or page.path
46
-
is starting_with("/assets/") %}
48
+
is starting_with("/assets/") or page.path is starting_with("/contributing/") %}
47
49
{% set show_nav_toggle = true %}
48
50
{% endif %}
49
51
{% endif %}
@@ -105,6 +107,8 @@
105
107
{% elif section and section.path is starting_with("/learn/errors/") or page and page.path is
106
108
starting_with("/learn/errors/") %}
107
109
Errors
110
+
{% elif section and section.path is starting_with("/contributing/") or page and page.path is starting_with("/contributing/") %}
111
+
Contributing
108
112
{% elif section and section.path is starting_with("/news/") %}
109
113
News
110
114
{% elif page and page.path is starting_with("/news/") %}
0 commit comments