1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-01 22:53:29 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
Files
bookshelfplus/bookshelfplus-frontend/views/index.html

27 lines
778 B
HTML

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<%- include("./component/header.html"); %>
</head>
<body>
<%- include("./component/navbar.html"); %>
<div class="main">
<div class="siteTitle">
<h1><%=headText%></h1>
</div>
<%- include("./component/searchbox.html"); %>
<div class="sloganBox">
<p class="emphasize">
一个完全免费无门槛的计算机类电子书下载网站
</p>
<p style="color: red;">
项目还在开发中,功能暂时还无法正常使用。
</p>
</div>
</div>
<%- include("./component/footer.html"); %>
<script>
$('#searchInput').focus();
</script>
</body>
</html>