Skip to content

Commit

Permalink
add quick links dropdown in navbar (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobheadxi committed May 26, 2020
1 parent ff450d8 commit 47b9458
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 36 additions & 1 deletion .vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,42 @@ module.exports = {
nav: [
{ text: 'Handbook', link: '/handbook/' },
{ text: 'Resources', link: '/resources/' },
{ text: 'About', link: 'https://ubclaunchpad.com', target:'_blank' },
{
text: 'Quick Links',
items: [
{ text: 'About Us', link: 'https://ubclaunchpad.com' },
{
text: 'GitHub Repositories',
items: [
{ text: 'Docs', link: 'https://github.com/ubclaunchpad/docs' },
{ text: 'Ideas', link: 'https://github.com/ubclaunchpad/ideas/issues' },
{ text: 'Design', link: 'https://github.com/ubclaunchpad/design' },
{ text: 'Strategy', link: 'https://github.com/ubclaunchpad/strategy' },
{ text: 'Leads', link: 'https://github.com/ubclaunchpad/leads' },
{ text: 'Exec', link: 'https://github.com/ubclaunchpad/exec' },
]
},
{
text: 'Google Drive',
items: [
{ text: 'Projects', link: 'https://drive.google.com/drive/u/0/folders/18piFDBdAUuZAOf9xOgpf2_HBUuVNae0S' },
{ text: 'Design', link: 'https://drive.google.com/drive/u/0/folders/1Zfe25r3D77hGdyMkj0tlxHNa-r7fAq1d' },
{ text: 'Strategy', link: 'https://drive.google.com/drive/u/0/folders/0BwdNv1PZjDeXMkc1eDVNY1ZHT00' },
{ text: 'Leads', link: 'https://drive.google.com/drive/u/0/folders/1hgPcUC_DrFMmzZ04pBSlZFig4v9AbTuv' },
{ text: 'Exec', link: 'https://drive.google.com/drive/u/0/folders/10b_2H5EhPpJtdgNi7QizRhWC9Qtivr8L' },
]
},
{
text: 'Miscellaneous',
items: [
{ text: 'GitHub', link: 'https://ubclaunchpad.com/github' },
{ text: 'Slack', link: 'https://ubclaunchpad.com/slack' },
{ text: 'Facebook', link: 'https://ubclaunchpad.com/facebook' },
{ text: 'Medium', link: 'https://ubclaunchpad.com/medium' },
]
}
]
},
],
searchPlaceholder: 'Search...',

Expand Down
2 changes: 2 additions & 0 deletions handbook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,5 @@ Some teams also have dedicated repositories:
Lead-specific content, such as meeting notes. Note that this repo is only
visible to Tech Leads.
* [**Exec**](https://github.com/ubclaunchpad/exec): Repo containing details about managing Launch Pad, such as our accounts.

Note that links to most of these repositories are available through the handy "Quick Links" dropdown in this website's navbar!

0 comments on commit 47b9458

Please sign in to comment.