-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
2,686 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ storage | |
nginx/logs/nginx.pid | ||
config.py | ||
head/config.py | ||
file-uploads/3d2a41ad-8e5b-466a-b961-8d887235937b |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
<form name="input" action="/multi_search/key/" method="get"> | ||
输入关键字: <input type="text" name="key"> | ||
<input type="submit" value="搜索"> | ||
</form> | ||
</form> | ||
|
||
<a href="/single_search">单源搜索</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<form name="input" action="/single_search/key/{{get_url}}" method="get"> | ||
输入关键字: <input type="text" name="key"> | ||
<input type="submit" value="搜索"> | ||
</form> | ||
|
||
<a href="/search">多源搜索</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<html> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>书源</title> | ||
<style> | ||
.jz { | ||
text-align:center | ||
} | ||
.divvvv { | ||
height:200; | ||
width:auto; | ||
text-align:center; | ||
display:flex; | ||
flex-direction:row; | ||
flex-wrap:wrap; | ||
justify-content:space-evenly; | ||
align-items:center | ||
} | ||
.wb { | ||
display:block; | ||
color:antiquewhite; | ||
height:20; | ||
width:auto | ||
} | ||
.xu-light { | ||
border:0; | ||
border-top:2px dotted#a2a9b6 | ||
} | ||
.cssbutton { | ||
margin-top:32px; | ||
height:40px | ||
} | ||
.cssbutton a { | ||
text-decoration:none; | ||
background:#2f435e; | ||
color:#f2f2f2; | ||
padding:10px 30px 10px | ||
30px; | ||
font-size:16rem; | ||
font-family:Arial,Helvetica,Verdana,sans-serif; | ||
font-weight:bold; | ||
border-radius:3px; | ||
-webkit-transition:all linear 0.30s; | ||
-moz-transition:all linear | ||
0.30s; | ||
transition:all linear 0.30s | ||
} | ||
.cssbutton a:hover { | ||
background:#385f9e | ||
} | ||
.xu-line { | ||
border:0; | ||
border-top:2px | ||
dotted#a2a9b6 | ||
} | ||
.bookcard{ | ||
border:3px solid rgb(95, 81, 81); | ||
border-radius:5px; | ||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.027); | ||
} | ||
|
||
.bookcard-text{ | ||
border:3px solid rgb(255, 255, 255); | ||
} | ||
.jiange{ | ||
border:3px solid white; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="jz"> | ||
<h1>单源搜索,选择分组</h1> | ||
</div> | ||
<div class="wb"></div> | ||
|
||
<div class="divvvv"> | ||
|
||
{%for i in bookSourceGroup %} | ||
<div class="jiange" onclick="window.location.href='{{ i[1] }}';"> | ||
<div class="bookcard"> | ||
<div class="bookcard-text"> | ||
<a class="jz bookcard-text-c">{{ i[0] }}</a> | ||
</div> | ||
</div> | ||
<div class="wb"></div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.