Files
obs-config/webapp/resources/views/partials/topbar.blade.php
2026-05-21 15:00:12 +02:00

20 lines
877 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{--
Shared breadcrumb / nav strip used by every non-overlay webapp page
(/, /scenes, /onboard). Distinct from the in-scene .hud strip so OBS
overlays render identically only browser-facing pages use this.
@param string $crumb uppercase label for the current page (e.g. 'ONBOARD')
@param string $context optional raw HTML for the middle slot;
defaults to the node address.
--}}
<header class="crumb-bar">
<nav class="crumbs">
<span class="led" aria-hidden="true"></span>
<a href="/" class="crumb crumb-root">OPHI-118</a>
<span class="sep"></span>
<span class="crumb crumb-here">{{ $crumb }}</span>
</nav>
<div class="crumb-ctx">{!! $context ?? '<span class="dim">NODE</span>127.0.0.1:1118' !!}</div>
<div class="crumb-clock"><span class="dim">UTC</span><span id="clock">--:--:--</span></div>
</header>