forked from sonic-net/SONiC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
66 lines (65 loc) · 4.68 KB
/
menu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<!-- FOR MOBILE VIEW COLLAPSED BUTTON -->
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- LOGO -->
<!-- TEXT BASED LOGO -->
<a class="navbar-brand" style="margin-top: -10px" href="index.html"><img src="assets/img/logo.png"></a>
<a class="navbar-brand" style="margin-top: -10px" href="index.html"><img src="assets/img/ocp_logo.png"></a>
<!-- IMG BASED LOGO -->
<!-- <a class="navbar-brand" href="index.html"><img src="assets/img/logo.png" alt="logo"></a> -->
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul id="top-menu" class="nav navbar-nav navbar-right main-nav">
<li ><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">SONiC <span class="fa fa-angle-down"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/Features-and-Roadmap">Features</a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/Architecture">Architecture</a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/Sonic-Roadmap-Planning">Roadmap</a></li>
<li><a style="color: black" href="Supported-Devices-and-Platforms.html">Supported Devices And Platforms</a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/blob/master/sourcecode.md">Source Code And License</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Users <span class="fa fa-angle-down"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki">Wiki</a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/Quick-Start">Getting Started </a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/Configuration">Configuration</a></li>
<li><a style="color: black" href="https://github.com/Azure/sonic-utilities/blob/master/doc/Command-Reference.md">Command Reference</a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/FAQ">FAQ</a></li>
<li><a style="color: black" href="newsletters.html">NewLetters</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Developers <span class="fa fa-angle-down"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/Developing-Guide">Developer Guide</a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/Building-Guide">Building Guide</a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/Testing-Guide">Testing Guide</a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/Becoming-a-contributor">How To Contribute</a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/blob/master/governance.md">Governance</a></li>
<li><a style="color: black" href="https://github.com/Azure/SONiC/wiki/technical_faq">Technical FAQ</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Community<span class="fa fa-angle-down"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a style="color: black" href="contact.html">Join Community</a></li>
<li><a style="color: black" href="https://www.opencompute.org/wiki/Networking/SONiC">Community Meeting Videos</a></li>
<li><a style="color: black" href="MoM.html">Community Meeting Minutes</a></li>
<li><a style="color: black" href="workgroups.html">Workgroups</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>