空笺未寄 v1.0 — 基于 DeepSeek UI 的 WordPress 主题
页面:首页、笺文、微言、拾影、文章详情、作者页 功能:三种展示方式、tucao 自定义类型、评论、分页、灯箱 CSS:DeepSeek 原 CSS + 系统字体 + 头像本地化 安装:激活主题后自动创建页面和导航,刷新固定链接即可
This commit is contained in:
+38
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html <?php language_attributes(); ?>>
|
||||
<head>
|
||||
<meta charset="<?php bloginfo('charset'); ?>">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="profile" href="https://gmpg.org/xfn/11">
|
||||
<?php wp_head(); ?>
|
||||
</head>
|
||||
<body <?php body_class(); ?>>
|
||||
<?php wp_body_open(); ?>
|
||||
|
||||
<div class="site">
|
||||
<div class="platform">
|
||||
<header class="top-bar">
|
||||
<a href="/" class="logo-area">
|
||||
<span class="logo"><?php bloginfo('name'); ?></span>
|
||||
</a>
|
||||
<nav>
|
||||
<?php
|
||||
if (has_nav_menu('primary')) {
|
||||
wp_nav_menu(array(
|
||||
'theme_location' => 'primary',
|
||||
'container' => false,
|
||||
'menu_class' => 'nav-links',
|
||||
'depth' => 1,
|
||||
));
|
||||
} else {
|
||||
echo '<ul class="nav-links">';
|
||||
echo '<li><a href="/">首页</a></li>';
|
||||
echo '<li><a href="/articles/">笺文</a></li>';
|
||||
echo '<li><a href="/tucao/">微言</a></li>';
|
||||
echo '<li><a href="/photos/">拾影</a></li>';
|
||||
echo '</ul>';
|
||||
}
|
||||
?>
|
||||
</nav>
|
||||
</header>
|
||||
<div class="main-content">
|
||||
Reference in New Issue
Block a user