-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontendabout.html
More file actions
101 lines (93 loc) · 3.22 KB
/
Copy pathfrontendabout.html
File metadata and controls
101 lines (93 loc) · 3.22 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!--声明mobile first-->
<meta http-equiv="X-UA-COMPATIBLE" content="IE=edge">
<!--禁止屏幕缩放-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!--引入bootstrap和fontawesome-->
<link href="img/css/bootstrap.min.css" rel="stylesheet">
<link href="img/css/bootstrap-theme.css" rel="stylesheet">
<link href="img/css/font-awesome.min.css" rel="stylesheet">
<link href="img/css/bootstrap-social.css" rel="stylesheet">
<link href="img/css/mystyle.css" rel="stylesheet">
<title>新闻页</title>
</head>
<body>
{include file='frontendnav.html'}
<div class="container">
<div class="row">
<div></div>
</div>
<div class="row">
<div class="col-xs-12">
<ol class="breadcrumb">
<li><a href="index.php">Home</a></li>
<li class="active">About me</li>
</ol>
</div>
<div class="col-xs-12">
<h3>About me</h3>
<hr>
</div>
</div>
</div>
<div class="container">
<div class="col-xs-12 col-sm-10">
<div class="row row-content-about-about" id="history">
<h2>我</h2>
<div class="col-xs-12">
<p>GISer 一枚</p>
<p>出于生计和兴趣</p>
<p>目前在转CS路上不断奋进</p>
</div>
<div class="well col-xs-12">
<blockquote>
<p>My heart is in the work...</p>
<footer>
<cite>Andrew Carnegie, 1900</cite>
</footer>
</blockquote>
</div>
<div>
<p style="padding:20px;"></p>
</div>
</div>
<div class="row row-content-about-about" id="Experience">
<h2>它</h2>
<div class="col-xs-12">
<p>一个个人博客站点</p>
<p>技术、生活与服务</p>
<p>还有各种GIS资源~(对,0.0作业放上来就是骗流量的)</p>
</div>
</div>
<div class="row row-content-about-about" id="projects">
<h2>我们</h2>
<div class="col-xs-12">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Experience</h3>
</div>
<div class="panel-body">
但愿哪天能在这地方写点上档次的东西.
</div>
</div>
<p style="padding: 20px;"></p>
</div>
</div>
</div>
<nav class="hidden-xs col-sm-2" id="myscroll">
<ul class="nav nav-pills nav-stacked" data-spy="affix" data-offset-top="400" >
<li><a href="#history">我</a></li>
<li><a href="#Experience">它</a></li>
<li><a href="#projects">我们</a></li>
</ul>
</nav>
<p style="padding:20px;"></p>
</div>
{include file='frontendfooter.html'}
<script src="img/js/jquery.min.js"></script>
<script src="img/js/bootstrap.min.js"></script>
</body>
</html>