mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Website: Update documentation side bar navigation (#21508)
Changes: - Updated the sidebar navigation on fleetdm.com/docs to show subpages in all sections of the docs (instead of the subpages in the current section). - Added a link to the non-reference documentation at /guides
This commit is contained in:
parent
384dced589
commit
e7e3633794
1 changed files with 9 additions and 7 deletions
16
website/views/pages/docs/basic-documentation.ejs
vendored
16
website/views/pages/docs/basic-documentation.ejs
vendored
|
|
@ -95,10 +95,10 @@
|
|||
<div class="container-fluid px-0 pt-4">
|
||||
<ul class="px-0 mb-0 pb-3">
|
||||
<li class="px-0 mb-2" v-for="page in findPagesByUrl()" :key="page.title">
|
||||
<a :href="page.url" class="font-weight-bold">
|
||||
<span class="font-weight-bold">
|
||||
{{page.title}}
|
||||
</a>
|
||||
<div purpose="expanded-nav" class="pt-3" v-if="isCurrentSection(page)">
|
||||
</span>
|
||||
<div purpose="expanded-nav" class="pt-3">
|
||||
<ul class="p-0 pl-2 mb-3" v-if="!_.isEmpty(findPagesByUrl(page.url))">
|
||||
<li v-for="subpage in findPagesByUrl(page.url)" :key="subpage.title">
|
||||
<a :href="subpage.url" :class="subpage.title === thisPage.title ? 'topic active' : 'topic'">
|
||||
|
|
@ -110,6 +110,7 @@
|
|||
</li>
|
||||
</ul>
|
||||
<ul class="px-0 mb-0 pt-3" purpose="mobile-docs-nav-other-links">
|
||||
<li class="px-0 mb-3"><a href="/guides">Guides</a></li>
|
||||
<li class="px-0 mb-3"><a href="/tables">Data tables</a></li>
|
||||
<li class="px-0 mb-3"><a href="/queries"><%= ['eo-it', 'mdm'].includes(primaryBuyingSituation) ? 'Device health checks' : 'Built-in queries' %></a></li>
|
||||
<li class="px-0 mb-3"><a href="https://github.com/fleetdm/fleet/releases" target="_blank">Releases</a></li>
|
||||
|
|
@ -134,8 +135,8 @@
|
|||
<div purpose="left-sidebar" class="d-none d-lg-flex flex-column text-left pl-0 pr-4 left-sidebar">
|
||||
<ul class="p-0 pb-3 m-0 left-nav">
|
||||
<li v-for="page in findPagesByUrl()" :key="page.title">
|
||||
<a :href="page.url" class="font-weight-bold pb-3">{{page.title}}</a>
|
||||
<div purpose="expanded-nav" class="pt-3" v-if="isCurrentSection(page)">
|
||||
<span class="font-weight-bold pb-3">{{page.title}}</span>
|
||||
<div purpose="expanded-nav" class="pt-3" >
|
||||
<ul class="p-0 pl-2 mb-3">
|
||||
<li v-for="subpage in findPagesByUrl(page.url)" :key="subpage.title">
|
||||
<a :href="subpage.url" :class="subpage.title === thisPage.title ? 'topic active' : 'topic'">
|
||||
|
|
@ -146,8 +147,9 @@
|
|||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<a class="pt-4 pb-3" target="_blank" href="/tables">Data tables</a>
|
||||
<a class="pb-3" target="_blank" href="/queries"><%= ['eo-it', 'mdm'].includes(primaryBuyingSituation) ? 'Device health checks' : 'Built-in queries' %></a>
|
||||
<a class="pt-4 pb-3" href="/guides">Guides</a>
|
||||
<a class="pb-3" href="/tables">Data tables</a>
|
||||
<a class="pb-3" href="/queries"><%= ['eo-it', 'mdm'].includes(primaryBuyingSituation) ? 'Device health checks' : 'Built-in queries' %></a>
|
||||
<a class="pb-3" target="_blank" href="https://github.com/fleetdm/fleet/releases">Releases</a>
|
||||
<a class="pb-3" target="_blank" href="/support">Support</a>
|
||||
<div class="d-none d-lg-block" purpose="swag-cta" v-if="showSwagForm">
|
||||
|
|
|
|||
Loading…
Reference in a new issue