forked from sonic-net/SONiC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sub-menu under Community is updated for the following. (1) Governance - moved from Developer tab to Community tab. (2) SONiC logo - new sub-menu https://github.com/Azure/SONiC/wiki/SONiC-Logo-Image (3) Trademark License - new page under construction. (4) Security Related Process https://github.com/Azure/sonic-security (5) Become a contributor - moved from Developer tab to Community tab.
- Loading branch information
Showing
3 changed files
with
153 additions
and
7 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
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,141 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>SONiC | Home</title> | ||
|
||
<!-- Favicon --> | ||
<link rel="shortcut icon" href="assets/img/logo_on_tab.png" type="image/x-icon"> | ||
|
||
<!-- Font awesome --> | ||
<link href="assets/css/font-awesome.css" rel="stylesheet"> | ||
<!-- Bootstrap --> | ||
<link href="assets/css/bootstrap.css" rel="stylesheet"> | ||
<!-- Slick slider --> | ||
<link rel="stylesheet" type="text/css" href="assets/css/slick.css"> | ||
<!-- Fancybox slider --> | ||
<link rel="stylesheet" href="assets/css/jquery.fancybox.css" type="text/css" media="screen" /> | ||
<!-- Theme color --> | ||
<link id="switcher" href="assets/css/theme-color/default-theme.css" rel="stylesheet"> | ||
|
||
<!-- Main style sheet --> | ||
<link href="assets/css/style.css" rel="stylesheet"> | ||
|
||
|
||
<!-- Google Fonts --> | ||
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'> | ||
<link href='https://fonts.googleapis.com/css?family=Roboto:400,400italic,300,300italic,500,700' rel='stylesheet' type='text/css'> | ||
|
||
|
||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | ||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | ||
<!--[if lt IE 9]> | ||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | ||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | ||
<![endif]--> | ||
|
||
</head> | ||
<body> | ||
|
||
<!--START SCROLL TOP BUTTON --> | ||
<a class="scrollToTop" href="#"> | ||
<i class="fa fa-angle-up"></i> | ||
</a> | ||
<!-- END SCROLL TOP BUTTON --> | ||
|
||
<!-- Start menu --> | ||
<section id="mu-menu"> | ||
</section> | ||
<!-- End menu --> | ||
<!-- Start search box --> | ||
<div id="mu-search"> | ||
<div class="mu-search-area"> | ||
<button class="mu-search-close"><span class="fa fa-close"></span></button> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<form class="mu-search-form"> | ||
<input type="search" placeholder="Type Your Keyword(s) & Hit Enter"> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- End search box --> | ||
<!-- Page breadcrumb --> | ||
<section id="mu-page-breadcrumb"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="mu-page-breadcrumb-area"> | ||
<h2>Trademark License</h2> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
<!-- End breadcrumb --> | ||
|
||
<!-- Start contact --> | ||
<section id="mu-contact"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="mu-contact-area"> | ||
<!-- start title --> | ||
<div class="mu-title"> | ||
<p>This page is under Contruction</p> | ||
</div> | ||
<!-- end title --> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
<!-- End contact --> | ||
|
||
|
||
<!-- Start footer --> | ||
<footer id="mu-footer"> | ||
|
||
<!-- start footer bottom --> | ||
<div class="mu-footer-bottom"> | ||
<div class="container"> | ||
<div class="mu-footer-bottom-area"> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- end footer bottom --> | ||
</footer> | ||
<!-- End footer --> | ||
|
||
|
||
|
||
|
||
|
||
|
||
<!-- jQuery library --> | ||
<script src="assets/js/jquery.min.js"></script> | ||
<script type="text/javascript"> | ||
$("#mu-menu").load("menu.html"); | ||
</script> | ||
<!-- Include all compiled plugins (below), or include individual files as needed --> | ||
<script src="assets/js/bootstrap.js"></script> | ||
<!-- Slick slider --> | ||
<script type="text/javascript" src="assets/js/slick.js"></script> | ||
<!-- Counter --> | ||
<script type="text/javascript" src="assets/js/waypoints.js"></script> | ||
<script type="text/javascript" src="assets/js/jquery.counterup.js"></script> | ||
<!-- Mixit slider --> | ||
<script type="text/javascript" src="assets/js/jquery.mixitup.js"></script> | ||
<!-- Add fancyBox --> | ||
<script type="text/javascript" src="assets/js/jquery.fancybox.pack.js"></script> | ||
|
||
<!-- Custom js --> | ||
<script src="assets/js/custom.js"></script> | ||
|
||
</body> | ||
</html> |