Skip to content

Commit 11f5816

Browse files
authored
Phase 1 of Contributor's Guide – Foundational Folder (#1152)
1 parent 6fd5194 commit 11f5816

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

content/contributing/_index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
+++
2+
title = "Contributing"
3+
template = "docs-section.html"
4+
page_template = "docs-page.html"
5+
insert_anchor_links = "right"
6+
[extra]
7+
status = 'hidden'
8+
public_draft = 1146
9+
+++

templates/layouts/base.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@
4040
{% set show_nav_toggle = true %}
4141
{% elif section.path is starting_with("/assets/") %}
4242
{% set show_nav_toggle = true %}
43+
{% elif section.path is starting_with("/contributing/") %}
44+
{% set show_nav_toggle = true %}
4345
{% endif %}
4446
{% elif page %}
4547
{% 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/") %}
4749
{% set show_nav_toggle = true %}
4850
{% endif %}
4951
{% endif %}
@@ -105,6 +107,8 @@
105107
{% elif section and section.path is starting_with("/learn/errors/") or page and page.path is
106108
starting_with("/learn/errors/") %}
107109
Errors
110+
{% elif section and section.path is starting_with("/contributing/") or page and page.path is starting_with("/contributing/") %}
111+
Contributing
108112
{% elif section and section.path is starting_with("/news/") %}
109113
News
110114
{% elif page and page.path is starting_with("/news/") %}

0 commit comments

Comments
 (0)