-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·138 lines (109 loc) · 6.47 KB
/
index.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jeffrey's Blog.</title>
<!-- load stylesheets -->
<link rel="stylesheet" href="http://fonts.useso.com/css?family=Open+Sans:100,300,400"> <!-- Google web font "Open Sans" -->
<link rel="stylesheet" href="font-awesome-4.5.0/css/font-awesome.min.css"> <!-- Font Awesome -->
<link rel="stylesheet" href="css/bootstrap.min.css"> <!-- Bootstrap style -->
<link rel="stylesheet" href="css/magnific-popup.css"> <!-- Magnific pop up style -->
<link rel="stylesheet" href="css/templatemo-style.css"> <!-- Templatemo style -->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="top" class="home">
<body id="top" class="home">
<div class="container-fluid">
<div class="row">
<div class="tm-navbar-container">
<!-- navbar -->
<nav class="navbar navbar-full navbar-fixed-top">
<button class="navbar-toggler hidden-md-up" type="button" data-toggle="collapse" data-target="#tmNavbar">
☰
</button>
<div class="collapse navbar-toggleable-sm" id="tmNavbar">
<ul class="nav navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#top">Intro</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#tm-section-2">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#tm-section-4">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<div class="row">
<div class="tm-intro">
<section id="tm-section-1">
<div class="tm-container text-xs-center tm-section-1-inner">
<img src="img/jeffrey-logo.png" alt="Logo" class="tm-logo" width="152" height="152">
<h1 class="tm-site-name">Jeffrey</h1>
<p class="tm-intro-text">Welcome to Jeffrey's Blogsite~</p>
<a href="#tm-section-2" class="tm-intro-link">Begin</a>
</div>
</section>
</div>
</div>
<div class="row gray-bg">
<div id="tm-section-2" class="tm-section">
<div class="tm-container tm-container-wide">
<div class="tm-news-item">
<p>这是我的一个个人小博客,也是试着挂到Github Pages上运行。只提供了几个链接,接下来希望会慢慢完善这个Blog.</p>
</div>
<div class="tm-news-item">
<a href="pages/1/" >page1</a>
</div>
</div>
</div>
</div> <!-- row -->
<div class="row gray-bg">
<section id="tm-section-4" class="tm-section">
<div class="tm-container">
<h2 class="blue-text tm-title text-xs-center">Contact Us</h2>
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8 col-xl-8">
<form action="index.html" method="post" class="tm-contact-form">
<div class="form-group col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xl-6 tm-form-group-left">
<input type="text" id="contact_name" name="contact_name" class="form-control" placeholder="Name" required/>
</div>
<div class="form-group col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xl-6 tm-form-group-right">
<input type="email" id="contact_email" name="contact_email" class="form-control" placeholder="Email" required/>
</div>
<div class="form-group">
<input type="text" id="contact_subject" name="contact_subject" class="form-control" placeholder="Subject" required/>
</div>
<div class="form-group">
<textarea id="contact_message" name="contact_message" class="form-control" rows="6" placeholder="Message" required></textarea>
</div>
<button type="submit" class="btn tm-light-blue-bordered-btn pull-xs-right">Submit</button>
</form>
</div> <!-- col -->
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 col-xl-4 margin-top-xs-50">
<p>
Email: <a href="mailto:[email protected]">[email protected]</a>
</p>
<nav >
<ul >
<li><a href="http://weibo.com/2699879010/profile?topnav=1&wvr=6">新浪微博</a></li>
<li><a href="http://www.cnblogs.com/bahcelor/">博客园</a></li>
<li><a href="https://github.com/lujf123">GitHub</a> </li>
</ul>
</nav>
</div>
</div>
</section>
</div> <!-- row -->
</div> <!-- container-fluid -->
</body>
</html>