1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- @php
- use Knuckles\Scribe\Tools\Utils as u;
- @endphp
- <a href="#" id="nav-button">
- <span>
- MENU
- <img src="{!! $assetPathPrefix !!}images/navbar.png" alt="navbar-image" />
- </span>
- </a>
- <div class="tocify-wrapper">
- @if ($metadata['logo'] != false)
- <img src="{{ $metadata['logo'] }}" alt="logo" class="logo" style="padding-top: 10px;" width="100%" />
- @endif
- @isset($metadata['example_languages'])
- <div class="lang-selector">
- @foreach ($metadata['example_languages'] as $name => $lang)
- @php
- if (is_numeric($name)) {
- $name = $lang;
- }
- @endphp
- <button type="button" class="lang-button"
- data-language-name="{{ $lang }}">{{ $name }}</button>
- @endforeach
- </div>
- @endisset
- <div class="search">
- <input type="text" class="search" id="input-search" placeholder="{{ u::trans('scribe::labels.search') }}">
- </div>
- <div id="toc">
- @foreach ($headings as $h1)
- <ul id="tocify-header-{{ $h1['slug'] }}" class="tocify-header">
- <li class="tocify-item level-1" data-unique="{!! $h1['slug'] !!}">
- <a href="#{!! $h1['slug'] !!}">{!! $h1['name'] !!}</a>
- </li>
- @if (count($h1['subheadings']) > 0)
- <ul id="tocify-subheader-{!! $h1['slug'] !!}" class="tocify-subheader">
- @foreach ($h1['subheadings'] as $h2)
- <li class="tocify-item level-2" data-unique="{!! $h2['slug'] !!}">
- <a href="#{!! $h2['slug'] !!}">{!! $h2['name'] !!}</a>
- </li>
- @if (count($h2['subheadings']) > 0)
- <ul id="tocify-subheader-{!! $h2['slug'] !!}" class="tocify-subheader">
- @foreach ($h2['subheadings'] as $h3)
- <li class="tocify-item level-3" data-unique="{!! $h3['slug'] !!}">
- <a href="#{!! $h3['slug'] !!}">{!! $h3['name'] !!}</a>
- </li>
- @endforeach
- </ul>
- @endif
- @endforeach
- </ul>
- @endif
- </ul>
- @endforeach
- </div>
- <ul class="toc-footer" id="toc-footer">
- @if ($metadata['postman_collection_url'])
- <li style="padding-bottom: 5px;"><a href="{!! $metadata['postman_collection_url'] !!}">{!! u::trans('scribe::links.postman') !!}</a></li>
- @endif
- @if ($metadata['openapi_spec_url'])
- <li style="padding-bottom: 5px;"><a href="{!! $metadata['openapi_spec_url'] !!}">{!! u::trans('scribe::links.openapi') !!}</a></li>
- @endif
- <li><a href="http://github.com/knuckleswtf/scribe">Documentation powered by Scribe ✍</a></li>
- </ul>
- <ul class="toc-footer" id="last-updated">
- <li>{{ $metadata['last_updated'] }}</li>
- </ul>
- </div>
|