48 lines
1.8 KiB
HTML
48 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{block name="title"}{$docsTitle}{/block}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="keywords" content="{block name="keywords"}YwxApp,文档中心{/block}">
|
|
<meta name="description" content="{block name="description"}{$docsTitle}{/block}">
|
|
<link rel="stylesheet" href="/static/docs/css/docs.css">
|
|
{block name="css"}{/block}
|
|
</head>
|
|
<body>
|
|
|
|
<header class="dc-header">
|
|
<div class="dc-header-inner">
|
|
<a class="dc-logo" href="/docs">
|
|
<span class="dc-logo-mark">Y</span>
|
|
<span class="dc-logo-text">{$docsTitle}</span>
|
|
</a>
|
|
|
|
<nav class="dc-nav">
|
|
<a href="/docs">文档首页</a>
|
|
{volist name="projectList" id="p" offset="0" length="5"}
|
|
<a href="/docs/{$p.name}">{$p.title}</a>
|
|
{/volist}
|
|
<a href="/" target="_blank">返回官网</a>
|
|
</nav>
|
|
|
|
<form class="dc-search" action="/docs/search" method="get">
|
|
<input type="text" name="kw" value="{$keyword|default=''}" placeholder="搜索文档..." autocomplete="off">
|
|
<button type="submit" aria-label="搜索">
|
|
<svg viewBox="0 0 24 24" width="16" height="16"><path fill="currentColor" d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 1 0-.7.7l.27.28v.79l5 4.99L20.49 19l-4.99-5Zm-6 0A4.5 4.5 0 1 1 14 9.5 4.5 4.5 0 0 1 9.5 14Z"/></svg>
|
|
</button>
|
|
</form>
|
|
|
|
<button class="dc-menu-toggle" id="dcMenuToggle" aria-label="目录">
|
|
<span></span><span></span><span></span>
|
|
</button>
|
|
</div>
|
|
</header>
|
|
|
|
{block name="body"}{/block}
|
|
|
|
<script src="/static/docs/js/docs.js"></script>
|
|
{block name="js"}{/block}
|
|
</body>
|
|
</html>
|