-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
1,739 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
- title: People | ||
content: | ||
- title: Band Board | ||
url: /people/band-board | ||
- title: Schedule | ||
url: /schedule | ||
- title: Join the Band! | ||
url: /join-band | ||
- title: Constitution | ||
url: /constitution | ||
|
||
- heading: Sections | ||
- title: Flutes | ||
url: /sections/flutes | ||
- title: Clarinets | ||
url: /sections/clarinets | ||
- title: Saxophones & Mellophones (S&M) | ||
url: /sections/s&m | ||
- title: Trumpets | ||
url: /sections/trumpets | ||
- title: Low Brass | ||
url: /sections/low-brass | ||
- title: Percussion | ||
url: /sections/percussion | ||
|
||
- title: Media | ||
content: | ||
- title: Buttons | ||
url: /buttons | ||
- title: Photos | ||
url: /photos | ||
- title: Recordings | ||
url: /recordings | ||
- title: Videos | ||
url: /videos | ||
- title: Lyrics | ||
url: /lyrics | ||
- title: Scripts | ||
url: /show-scripts | ||
- title: Alumni Newsletters | ||
url: /alumni-newsletters | ||
|
||
- title: History | ||
content: | ||
- title: About Us | ||
url: /about-us | ||
- title: Elrod Snidley | ||
url: /elrod-snidley | ||
- title: Sound Off! | ||
url: /sound | ||
- title: 75 Years in Pictures | ||
url: "/75-years-pictures" | ||
|
||
# todo: Members | ||
|
||
- title: More Info | ||
content: | ||
- title: Giving | ||
url: /giving | ||
- title: Visiting Bands | ||
url: /visiting-bands | ||
- title: Ivy Bands | ||
url: /ivy-bands | ||
- title: Ivy Bands Agreement | ||
url: /ivy-bands-agreement | ||
|
||
- heading: Commencement | ||
- title: Schedule | ||
url: /commencement-schedule | ||
- title: Student Signup | ||
url: https://docs.google.com/forms/d/1gDBvdABCfKt4JbuEdR2kOVR5RRp4gmNPoyUYlx0Q6cs/viewform?usp=send_form | ||
- title: Alumni Signup | ||
url: /commencement-sign-alumni |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<ul class="navbar-nav"> | ||
{% for dropdown in nav %} | ||
<li class="nav-item dropdown mx-1"> | ||
<button | ||
class="nav-link dropdown-toggle bg-transparent border-0" | ||
style="outline: 0" | ||
id="dropdownMenuLink" | ||
data-bs-toggle="dropdown" | ||
aria-expanded="false" | ||
> | ||
{{dropdown.title}} | ||
</button> | ||
|
||
<ul | ||
class="dropdown-menu dropdown-menu-dark bg-brown4 rounded-3 lg-shadow-brown" | ||
aria-labelledby="dropdownMenuLink" | ||
> | ||
{% for link in dropdown.content %}{% if link.heading %} | ||
<li><hr class="dropdown-divider" /></li> | ||
<li><h6 class="dropdown-header">{{link.heading}}</h6></li> | ||
{% else %} | ||
<li><a class="dropdown-item" href="{{link.url}}">{{link.title}}</a></li> | ||
{% endif %}{% endfor %} | ||
</ul> | ||
</li> | ||
{% endfor %} | ||
<li class="nav-item"><a href="/contact" class="nav-link">Contact</a></li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/sections/saxophones-mellophones-sm => /sections/s&m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.