Files
pk10/App/Views/Web/_nav.php
T

24 lines
1.8 KiB
PHP

<?php /** 底部5栏导航 */ $navActive = $navActive ?? ''; $t = $t ?? function($k){return $k;}; ?>
<nav class="nav-bottom">
<a href="/" class="nav-item <?=$navActive==='game'?'active':''?>">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="7" width="20" height="15" rx="2" ry="2"/><polyline points="17 2 12 7 7 2"/></svg>
<span><?=$t('nav_game')?></span>
</a>
<a href="/lottery" class="nav-item <?=$navActive==='lottery'?'active':''?>">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="12" y1="20" x2="12" y2="10"/><line x1="18" y1="20" x2="18" y2="4"/><line x1="6" y1="20" x2="6" y2="16"/></svg>
<span><?=$t('nav_lottery')?></span>
</a>
<a href="/details" class="nav-item <?=$navActive==='details'?'active':''?>">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
<span><?=$t('nav_details')?></span>
</a>
<a href="#" class="nav-item <?=$navActive==='chat'?'active':''?>">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/></svg>
<span><?=$t('nav_chat')?></span>
</a>
<a href="/profile" class="nav-item <?=$navActive==='profile'?'active':''?>">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
<span><?=$t('nav_profile')?></span>
</a>
</nav>