-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·103 lines (103 loc) · 5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blog</title>
<meta name="description" content="Something about the blog." />
<link href="https://fonts.googleapis.com/css?family=Duru+Sans&subset=latin-ext" rel="stylesheet" />
<!-- All CSS Files -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/blog.css" />
<link rel="stylesheet" href="assets/css/bootstrap-responsive.min.css" />
</head>
<body>
<div class="container">
<!-- Header -->
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="index.html">BLOG</a> <span class="blog-title">/ my blog</span>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="detail.html">post</a></li>
</ul>
</div>
</div>
</div>
<!-- End -->
<div class="row-fluid row-heading">
<div class="span8"><h1>Latest Articles</h1></div>
<div class="span4 text-right">
<form class="form-search" method="get" action="#" id="search-form">
<div class="input-append">
<input type="text" name="search" class="span10 search-query" placeholder="Search...">
<button type="submit" class="btn btn-inverse"><i class="icon-search icon-white"></i></button>
</div>
</form>
</div>
</div>
<!-- Post -->
<div class="row-fluid">
<div class="span8">
<div class="well">
<a href="#" class="p_title">Sample Article Title</a><br />
<p>A blog is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text entries (posts). Posts are typically displayed in reverse chronological order... (Wikipedia)</p><br />
<a href="#" class="btn btn-small">read more <i class="icon-black icon-chevron-right"></i></a>
</div>
</div>
<div class="span4">
<div class="brackets">}</div>
date : mar 2013<br />
category : <a href="#">personel</a>
</div>
</div>
<!-- End -->
<div class="row-fluid">
<div class="span8">
<div class="well">
<a href="#" class="p_title">Sample Article Title</a><br />
<p>A blog is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text entries (posts). Posts are typically displayed in reverse chronological order... (Wikipedia)</p><br />
<a href="#" class="btn btn-small">read more <i class="icon-black icon-chevron-right"></i></a>
</div>
</div>
<div class="span4">
<div class="brackets">}</div>
date : feb 2013<br />
category : <a href="#">personel</a>
</div>
</div>
<div class="row-fluid">
<div class="span8">
<div class="well">
<a href="#" class="p_title">Sample Article Title</a><br />
<p>A blog is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text entries (posts). Posts are typically displayed in reverse chronological order... (Wikipedia)</p><br />
<a href="#" class="btn btn-small">read more <i class="icon-black icon-chevron-right"></i></a>
</div>
</div>
<div class="span4">
<div class="brackets">}</div>
date : jan 2013<br />
category : <a href="#">personel</a>
</div>
</div>
<a href="#" class="btn btn-inverse btn-small show-all"><i class="icon-white icon-th-list"></i> show all</a><br />
<!-- Footer -->
<div class="footer">
© 2013 example.blog - <a href="#">twitter</a> - <a href="#">github</a> - <a href="#">email</a> - <a href="#">rss</a>
</div>
<!-- End -->
</div>
<!-- All JS Files -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.validate.min.js"></script>
<script src="assets/js/blog.js"></script>
</body>
</html>