mirror of
https://github.com/201206030/novel-plus.git
synced 2025-06-24 04:46:37 +00:00
新增蓝色主题模版
This commit is contained in:
5
templates/blue/html/common/footer.html
Normal file
5
templates/blue/html/common/footer.html
Normal file
@ -0,0 +1,5 @@
|
||||
<div th:fragment="footer" class="footer">
|
||||
<div style="display: none"></div>
|
||||
<p><a href="/" rel="index">小说精品屋</a>所有内容使用搜索引擎转码技术抓取自网络,如有侵犯版权,请来信告知,本站立即处理。</p>
|
||||
<p>Copyright © 2019-2020 http://www.java2nb.com All rights reserved.</p>
|
||||
</div>
|
25
templates/blue/html/common/header.html
Normal file
25
templates/blue/html/common/header.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns:th="http://www.thymeleaf.org">
|
||||
<head th:fragment="common_head(title,meta,links,script)">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
||||
<title th:replace="${title}">小说精品屋</title>
|
||||
<link rel="stylesheet" href="/css/base.css?v=1"/>
|
||||
<th:block th:replace="${meta}"/>
|
||||
<th:block th:replace="${links}"/>
|
||||
<th:block th:replace="${script}"/>
|
||||
<script>
|
||||
var _hmt = _hmt || [];
|
||||
(function() {
|
||||
var hm = document.createElement("script");
|
||||
hm.src = "https://hm.baidu.com/hm.js?ecc8b50a3122e6d5e09be7a9e5383e07";
|
||||
var s = document.getElementsByTagName("script")[0];
|
||||
s.parentNode.insertBefore(hm, s);
|
||||
})();
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
4
templates/blue/html/common/js.html
Normal file
4
templates/blue/html/common/js.html
Normal file
@ -0,0 +1,4 @@
|
||||
<script th:fragment="js" src="/javascript/jquery-1.8.0.min.js" type="text/javascript"></script>
|
||||
<script th:fragment="js" src="/layui/layui.all.js" type="text/javascript"></script>
|
||||
<script th:fragment="js" src="/javascript/header.js" type="text/javascript"></script>
|
||||
<script th:fragment="js" src="/javascript/common.js" type="text/javascript"></script>
|
28
templates/blue/html/common/top.html
Normal file
28
templates/blue/html/common/top.html
Normal file
@ -0,0 +1,28 @@
|
||||
<div th:fragment="top(navType)" class="header">
|
||||
<div class="inner">
|
||||
<div class="logo"><a href="/"><img src="/images/logo.png" alt="小说精品屋"></a></div>
|
||||
<div class="nav">
|
||||
<ul class="clearfix">
|
||||
<li class="on">
|
||||
<a href="/">首页</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/#">书库</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/#">排行</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="search">
|
||||
<form method="get" name="search" action="/#" target="_blank">
|
||||
<input type="text" name="keyword" id="q" placeholder="请输入书名·作者" class="search-key">
|
||||
<button type="submit" class="search-btn" id="search-btn">搜索</button>
|
||||
</form>
|
||||
</div>
|
||||
<div class="other">
|
||||
<a class="link-wap" href="/">手机版</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user