/
www
/
wwwroot
/
fxdst.com
/
wp-content
/
themes
/
fxdst
/
templates
/
Upload File
HOME
<?php /* * @Theme Name:WebStack * @Theme URI:https://www.iotheme.cn/ * @Author: iowen * @Author URI: https://www.iowen.cn/ * @Date: 2019-02-22 21:26:02 * @LastEditors: iowen * @LastEditTime: 2024-07-30 17:31:38 * @FilePath: /WebStack/templates/header-banner.php * @Description: */ if ( ! defined( 'ABSPATH' ) ) { exit; } $fxdst_top_actions = array( array( 'key' => 'github-ai', 'icon' => 'fa-github', 'label' => 'GitHub项目榜', 'url' => home_url('/rankings/github-ai/'), ), array( 'key' => 'openrouter', 'icon' => 'fa-bar-chart', 'label' => '模型调用榜', 'url' => home_url('/rankings/openrouter/'), ), array( 'key' => 'opencode', 'icon' => 'fa-terminal', 'label' => 'OpenCode榜', 'url' => home_url('/rankings/opencode/'), ), array( 'key' => 'agents', 'icon' => 'fa-cogs', 'label' => 'Agent评测榜', 'url' => home_url('/rankings/agents/'), ), array( 'key' => 'open-models', 'icon' => 'fa-cubes', 'label' => '开源模型榜', 'url' => home_url('/rankings/open-models/'), ), ); ?> <nav class="navbar user-info-navbar" role="navigation"> <div class="navbar-content"> <ul class="user-info-menu list-inline list-unstyled"> <li class="hidden-xs"> <a href="#" data-toggle="sidebar"> <i class="fa fa-bars"></i> </a> </li> </ul> <div class="fxdst-top-actions" aria-label="Quick tools"> <?php foreach ($fxdst_top_actions as $fxdst_action) : ?> <a class="fxdst-top-action fxdst-top-action-<?php echo esc_attr($fxdst_action['key']); ?>" href="<?php echo esc_url($fxdst_action['url']); ?>" aria-label="<?php echo esc_attr(html_entity_decode($fxdst_action['label'], ENT_QUOTES, 'UTF-8')); ?>"> <i class="fa <?php echo esc_attr($fxdst_action['icon']); ?>" aria-hidden="true"></i> <span><?php echo $fxdst_action['label']; ?></span> </a> <?php endforeach; ?> </div> </div> </nav> <div class="fxdst-header-spacer" aria-hidden="true"></div>