-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
122 lines (119 loc) · 6.48 KB
/
product.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Team CovertDragon</title>
<link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/product.css">
<link href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false"
aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Team CovertDragon</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right" id="navbar">
<li>
<a href="index.html">主页</a>
</li>
<li class="active">
<a href="product.html">作品</a>
</li>
<li>
<a href="about.html">关于</a>
</li>
<li>
<a href="#">其他</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="blank"></div>
<div class="product">
<h3>Spring Festival
<small>
<span class="label label-primary">
<i class="fa fa-check-square" aria-hidden="true"></i> 食物 </span>
<span class="label label-info">
<i class="fa fa-check-square" aria-hidden="true"></i> 装饰 </span>
<span class="label label-info">
<i class="fa fa-check-square" aria-hidden="true"></i> 时令 </span>
</small>
</h3>
<div class="desc">Spring Festival 是一个以中国传统节日春节为主题的 Mod;
<br>目前 Spirng Festival 仍在开发中,目前实现的特性有红包、爆竹、小鞭炮、大红袍等。
<p>
<a href="https://github.com/TeamCovertDragon/SpringFestival">
<i class="fa fa-github-square" aria-hidden="true"></i>源代码</a>
<a href="https://github.com/TeamCovertDragon/SpringFestival/releases">
<i class="fa fa-cloud-download" aria-hidden="true"></i>下载地址</a>
<a href="https://github.com/TeamCovertDragon/SpringFestival/issues">
<i class="fa fa-bug" aria-hidden="true"></i>问题反馈</a>
</p>
</div>
</div>
<div class="product">
<h3>Mooncake Craft
<small>
<span class="label label-primary">
<i class="fa fa-check-square" aria-hidden="true"></i> 食物 </span>
<span class="label label-info">
<i class="fa fa-check-square" aria-hidden="true"></i> 农业 </span>
</small>
</h3>
<div class="desc">Mod 如其名,MooncakeCraft 是一个以中秋节为主题,以月饼的制作为核心玩法的 Mod;
<br>目前 MooncakeCraft 添加了莲蓉、豆沙、枣泥、伍仁、蛋黄莲蓉及双黄莲蓉六种口味的月饼,及其配套的原材料及制作工具;
<br>同时为了制作这六种不同的馅料,MooncakeCraft 还追加了两种作物:芝麻和花生;
<br>同时还追加了枣(破坏云杉树树叶时有概率掉落)和莲子(破坏睡莲叶时有概率掉落)两种原材料。
<p>
<a href="https://github.com/TeamCovertDragon/MooncakeCraft">
<i class="fa fa-github-square" aria-hidden="true"></i>源代码</a>
<a href="https://github.com/TeamCovertDragon/MooncakeCraft/releases">
<i class="fa fa-cloud-download" aria-hidden="true"></i>下载地址</a>
<a href="https://github.com/TeamCovertDragon/MooncakeCraft/issues">
<i class="fa fa-bug" aria-hidden="true"></i>问题反馈</a>
</p>
</div>
</div>
<div class="product">
<h3>???????
<small>
<span class="label label-primary">
<i class="fa fa-check-square" aria-hidden="true"></i> ??? </span>
<span class="label label-info">
<i class="fa fa-check-square" aria-hidden="true"></i> ??? </span>
</small>
</h3>
<div class="desc">????????
<a href="http://duanwu.tritusk.info/">????</a>
<br>
<p>
<a href="https://github.com/TeamCovertDragon/Duanwu">
<i class="fa fa-github-square" aria-hidden="true"></i>源代码</a>
<a href="https://github.com/TeamCovertDragon/Duanwu/releases">
<i class="fa fa-cloud-download" aria-hidden="true"></i>下载地址</a>
<a href="https://github.com/TeamCovertDragon/Duanwu/issues">
<i class="fa fa-bug" aria-hidden="true"></i>问题反馈</a>
</p>
</div>
</div>
</div>
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>