34 lines
876 B
Plaintext
34 lines
876 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en" data-theme="22,22,22">
|
|
<head>
|
|
<%- include('../_layout/base') -%> <%- include('../_layout/styles') -%>
|
|
<title>home页面</title>
|
|
</head>
|
|
<body>
|
|
<%- include('../_layout/nav') -%>
|
|
<p>home2222</p>
|
|
<a href="/signup">去 注册 页面</a>
|
|
|
|
<span>当前assets: <%= assets %></span>
|
|
|
|
<span class="bs-tooltip fade-right" data-bs-text="Fade right">
|
|
Hover me
|
|
</span>
|
|
<span class="bs-tooltip zoom-up" data-bs-text="Zoom up">Hover me</span>
|
|
|
|
<h1>1</h1>
|
|
|
|
<select class="ttt">
|
|
<option>最近的</option>
|
|
<option selected>最热门</option>
|
|
<option>最多喜欢</option>
|
|
</select>
|
|
|
|
<button class="bs-button">按钮</button>
|
|
|
|
<input type="text" class="bs-input border icon" />
|
|
|
|
<%- include('../_layout/footer') -%> <%- include('../_layout/scripts') -%>
|
|
</body>
|
|
</html>
|