Skip to content

Commit 4b1da1e

Browse files
authored
feat: Improve layout (#217)
1 parent 1fda84d commit 4b1da1e

33 files changed

+2609
-7094
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
run: |
5151
poetry check
5252
poetry install
53+
python -m nltk.downloader punkt
5354
5455
- name: Linter
5556
if: ${{ github.event_name == 'pull_request' }}

conda/dev.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ dependencies:
66
- python <3.12
77
- pip
88
- poetry
9+
- nodejs

mkdocs.yml

Lines changed: 39 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -16,61 +16,70 @@ theme:
1616
primary: indigo
1717

1818
extra_css:
19-
- css/style.css
20-
- css/index.css
19+
- css/base.css
20+
- css/blog.css
21+
- css/code.css
22+
- css/content.css
23+
- css/footer.css
24+
- css/home.css
25+
- css/nav.css
26+
- css/search.css
27+
- css/tokens.css
28+
- css/utilities.css
2129

2230
extra_javascript:
23-
- js/bundle.js
24-
- js/search.js
25-
- js/index.json
31+
- js/theme.js
32+
- js/osl-search.js
33+
- js/vendor/lunr.min.js
34+
- js/vendor/lunr.stemmer.support.min.js
35+
- js/vendor/lunr.multi.min.js
36+
- js/vendor/lunr.es.min.js
37+
- js/vendor/lunr.pt.min.js
2638

2739
nav:
2840
- Blog: "blog/index.md"
2941
- Projects:
30-
- index: "projects/index.md"
42+
- Overview: "projects/index.md"
3143
- Incubation: "projects/incubation/index.md"
32-
- Affiliation:
33-
- index: "projects/affiliation/index.md"
44+
- Affiliation: "projects/affiliation/index.md"
3445
- All Projects: "projects/list/index.md"
3546
- Opportunities:
36-
- index: opportunities/index.md
47+
- Overview: opportunities/index.md
3748
- OSS Internship:
38-
- index: "opportunities/internships/oss/index.md"
49+
- Overview: "opportunities/internships/oss/index.md"
3950
- Project Ideas: "opportunities/internships/oss/project-ideas/index.md"
4051
- "Contribution Guidelines": "opportunities/guides/contribution/index.md"
4152
- "Candidates' Guide": "opportunities/internships/guides/interns/index.md"
4253
- "Template: Projects Ideas": "opportunities/internships/templates/projects-ideas/index.md"
4354
- "Template: Candidates's Project Proposal": "opportunities/internships/templates/candidate-proposal/index.md"
4455
- OSS Research Seed Internship:
45-
- index: "opportunities/internships/oss-research-seed/index.md"
56+
- Overview: "opportunities/internships/oss-research-seed/index.md"
4657
- Project Ideas: "opportunities/internships/oss-research-seed/project-ideas/index.md"
4758
- "Contribution Guidelines": "opportunities/guides/contribution/index.md"
4859
- "Candidates' Guide": "opportunities/internships/guides/interns/index.md"
4960
- "Template: Projects Ideas": "opportunities/internships/templates/projects-ideas/index.md"
5061
- "Template: Candidates's Project Proposal": "opportunities/internships/templates/candidate-proposal/index.md"
5162
- Google Summer of Code:
52-
- index: "opportunities/gsoc/index.md"
63+
- Overview: "opportunities/gsoc/index.md"
5364
- Project Ideas: "opportunities/gsoc/project-ideas/index.md"
5465
- "Contribution Guidelines": "opportunities/guides/contribution/index.md"
5566
- "Candidates' Guide": "opportunities/gsoc/guides/contributor/index.md"
5667
- "Template: Project Idea": "opportunities/gsoc/templates/project-ideas.md"
5768
- "Template: Candidates Project Proposal": "opportunities/gsoc/templates/contributor-proposal.md"
5869
- Partnership:
59-
- index: "partnership/index.md"
70+
- Overview: "partnership/index.md"
6071
- Partners: "partnership/partners/index.md"
6172
- Open Proposals:
62-
- index: "partnership/open-proposals/index.md"
63-
- Community Traning: "partnership/open-proposals/community-training/index.md"
73+
- Overview: "partnership/open-proposals/index.md"
74+
- Community Training: "partnership/open-proposals/community-training/index.md"
6475
- Learning:
65-
- index: learning/index.md
66-
- Events:
67-
- index: learning/events/index.md
68-
- Study Groups:
69-
- index: learning/study-groups/index.md
76+
- Overview: learning/index.md
77+
- Events: learning/events/index.md
78+
- Study Groups: learning/study-groups/index.md
7079
- About:
71-
- index: "about/index.md"
80+
- Overview: "about/index.md"
7281
- About OSL:
73-
- index: "about/index.md"
82+
- Overview: "about/index.md"
7483
- Contact Us: about/contact/index.md
7584
- Our Formula: "about/formula/index.md"
7685
- Roadmap: about/roadmap/index.md
@@ -79,7 +88,7 @@ nav:
7988
- Team: about/team/index.md
8089
- Fiscal Sponsor: about/fiscal-sponsor/index.md
8190
- Guidelines:
82-
- index: about/guidelines/index.md
91+
- Overview: about/guidelines/index.md
8392
- Articles: about/guidelines/articles/index.md
8493
- DEI: about/guidelines/dei/index.md
8594
- Mentoring: about/guidelines/mentoring/index.md
@@ -135,3 +144,10 @@ plugins:
135144
enabled: true
136145
enable_creation_date: false
137146
type: iso_date
147+
148+
- search:
149+
lang:
150+
- en
151+
- es
152+
- pt
153+
prebuild_index: true

0 commit comments

Comments
 (0)