Rebuild navigation to match docs site navigation

This commit is contained in:
David Dieruf 2020-09-14 15:12:28 -04:00
Родитель 1a959c6b0b
Коммит 316795e444
2 изменённых файлов: 69 добавлений и 1 удалений

Просмотреть файл

@ -2,7 +2,7 @@
@inject NavigationManager NavigationManager
<header class="sticky-top bg-white" style="box-shadow: 0 0 20px -4px #eeeeee;">
<SiteHeader />
<NewSiteHeader />
</header>
<div id="main">
@Body

Просмотреть файл

@ -0,0 +1,68 @@

<nav class="bg-white navbar navbar-expand-xl container py-xl-2">
<Href class="navbar-brand" href="/">
<img id="logo" class="svg" src="/images/logo.svg" alt="Steeltoe" >
</Href>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class=" navbar-nav text-center">
<li class="nav-item dropdown ml-xl-5 mr-xl-2">
<a class="nav-link dropdown-toggle open" href="# id="why" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Why Steeltoe
</a>
<div class="dropdown-menu" aria-labelledby="why">
<Href class="dropdown-item" href="/why-steeltoe">Overview</Href>
<Href class="dropdown-item" href="/microservices">Microservices</Href>
<Href class="dropdown-item" href="/cloud">Cloud</Href>
<Href class="dropdown-item" href="/web-application">Web Applications</Href>
<Href class="dropdown-item" href="/event-driven">Event Driven</Href>
</div>
</li>
<li class="nav-item dropdown mx-xl-2">
<a class="nav-link dropdown-toggle" href="#" id="learn" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Learn
</a>
<div class="dropdown-menu" aria-labelledby="learn">
<Href class="dropdown-item" href="/get-started">Get Started</Href>
<Href class="dropdown-item" href="http://localhost:8081/api/v3/welcome/overview.html">Documentation</Href>
<Href class="dropdown-item" href="http://localhost:8081/articles/index.html">Blog</Href>
</div>
</li>
<li class="nav-item dropdown mx-xl-2">
<a class="nav-link dropdown-toggle" href="#" id="projects" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Projects
</a>
<div class="dropdown-menu" aria-labelledby="projects">
<Href class="dropdown-item" href="/app-configuration">Steeltoe Application Configuration</Href>
<Href class="dropdown-item" href="/circuit-breakers">Steeltoe Circuit Breakers</Href>
<Href class="dropdown-item" href="/cloud-management">Steeltoe Distributed Tracing</Href>
<Href class="dropdown-item" href="/docs/logging">Steeltoe Dynamic Logging</Href>
<Href class="dropdown-item" href="/cloud-management">Steeltoe Management</Href>
<Href class="dropdown-item" href="/file-sharing">Steeltoe Network File Sharing</Href>
<Href class="dropdown-item" href="/security-providers">Steeltoe Security</Href>
<Href class="dropdown-item" href="/service-connectors">Steeltoe Service Connectors</Href>
<Href class="dropdown-item" href="/service-discovery">Steeltoe Service Discovery</Href>
<Href class="dropdown-item" href="/messaging">Steeltoe Messaging</Href>
<div class="small pl-4 pt-3">Developer Tools</div>
<Href class="dropdown-item pl-5" href="/initializr">Steeltoe Initializr</Href>
</div>
</li>
<li class="nav-item mx-xl-2">
<Href class="nav-link" href="/training">Training</Href>
</li>
<li class="nav-item mx-xl-2">
<Href class="nav-link" href="/support">Support</Href>
</li>
<li class="nav-item mx-xl-2">
<Href class="nav-link" href="/community">Community</Href>
</li>
</ul>
</div>
</nav>
@code {
}