Skip to content

Commit 0412449

Browse files
Astraxx04palnabarun
authored andcommitted
Navbar changes
1 parent 115b608 commit 0412449

File tree

5 files changed

+257
-212
lines changed

5 files changed

+257
-212
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,6 @@ dist
108108

109109
# Mac
110110
.DS_Store
111+
112+
# schedule.json
113+
src/_data/schedule.json

src/_data/menuItems.json

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
[
2+
{
3+
"name": "Attend",
4+
"hasSubmenu": true,
5+
"submenu": [
6+
{
7+
"name": "Venue",
8+
"link": "venue"
9+
},
10+
{
11+
"name": "Scholarships",
12+
"link": "attend/scholarships"
13+
},
14+
{
15+
"name": "Accessibility",
16+
"link": "attend/accessibility"
17+
},
18+
{
19+
"name": "Health and Safety",
20+
"link": "attend/health-and-safety"
21+
},
22+
{
23+
"name": "FAQ's",
24+
"link": "attend/faqs"
25+
}
26+
]
27+
},
28+
{
29+
"name": "Program",
30+
"hasSubmenu": true,
31+
"submenu": [
32+
{
33+
"name": "Schedule",
34+
"link": "program/schedule"
35+
},
36+
{
37+
"name": "CFP Overview",
38+
"link": "cfp"
39+
},
40+
{
41+
"name": "Talks and Workshops",
42+
"link": "cfp/talks"
43+
},
44+
{
45+
"name": "Panel Discussions",
46+
"link": "cfp/panel"
47+
},
48+
{
49+
"name": "Poster Presentations",
50+
"link": "cfp/poster"
51+
},
52+
{
53+
"name": "Lightning Talks",
54+
"link": "program/lightning-talks"
55+
}
56+
]
57+
},
58+
{
59+
"name": "Sponsors",
60+
"link": "sponsors",
61+
"hasSubmenu": false,
62+
"isExternal": false
63+
},
64+
{
65+
"name": "Code of Conduct",
66+
"hasSubmenu": true,
67+
"submenu": [
68+
{
69+
"name": "Code of Conduct Policy",
70+
"link": "coc/policy"
71+
},
72+
{
73+
"name": "Reporting Guide",
74+
"link": "coc/reporting"
75+
}
76+
]
77+
},
78+
{
79+
"name": "Blog",
80+
"link": "https://in.pycon.org/blog/",
81+
"hasSubmenu": false,
82+
"isExternal": true
83+
}
84+
]

src/_includes/landing/hero.njk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
PyCon India 2025 is the premier conference for Python enthusiasts and professionals, offering an unparalleled
2121
opportunity to dive deep into the world of Python and explore its limitless potential. Stay tuned for updates!
2222
</p>
23-
{# <div>
24-
{{ button(text="View Schedule", url="#", lime_bg=true) }}
23+
<div>
24+
{{ button(text="View Schedule", url=env.baseUrl + "program/schedule", lime_bg=true)}}
2525
</div>
26-
<div class="flex flex-wrap gap-4">
26+
{# <div class="flex flex-wrap gap-4">
2727
{{ button(text="Program Guide", url="#") }}
2828
{{ button(text="Dev Sprint", url="#") }}
2929
</div> #}

0 commit comments

Comments
 (0)