-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (38 loc) · 949 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
My personal webpage
</title>
<meta charset="UTF-8" />
<!-- jQuery -->
</head>
<body class="container">
<div class="col-sm-1 col-md-2 hidden-xs-bottom empty"><!-- --></div>
<div class="col-sm-10 col-md-8 container">
<header class="row">
<h1><strong>My personal webpage</strong></h1>
<nav>
<ul class="nav nav-inline">
<li class="nav-item"><a class="nav-link" href="/">Index</a></li>
<li class="nav-item"><a class="nav-link" href="/about/">About</a></li>
</ul>
</nav>
</header>
<main class="row">
<h2>Index</h2>
<p>Index</p>
</main>
<hr class="row" />
<footer class="row text-xs-center">
<div class="row">
</div>
<div class="row">
<p>© 2016</p>
<p><small>Generated on: 17:46 | 2016/11/11</small></p>
</div>
</footer>
</div>
<div class="col-sm-1 col-md-2 hidden-xs-bottom empty"><!-- --></div>
</body>
</html>