-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
118 lines (106 loc) · 5.01 KB
/
blog.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
<!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">
<meta name="description" content="Resume & Blog template for personal">
<meta name="author" content="Vesey">
<link rel="icon" href="img/icons/favicon.ico">
<title>Blog Konix - Personal Portfolio Template</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Reset -->
<link href="css/normalize.css" rel="stylesheet">
<!--All Google Fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond:400,700" rel="stylesheet">
<!--Main Style-->
<link href="css/style.css" rel="stylesheet">
<!-- FontAwesome -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!--Fullpage scroll-->
<link rel="stylesheet" type="text/css" href="css/jquery.fullPage.css" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="vertical-navigation">
<div id="vertical-bar">
<div id="brand-logo"><a href="#">konix</a></div>
<div id="copyright"><i class="fa fa-copyright" aria-hidden="true"></i> 2017 Vesey. All rights reserved</div>
<a href="#" id="menu-icon">
<i class="fa fa-th-large" aria-hidden="true"></i>
</a><!--End #menu-icon-->
</div><!--End #vertical-bar-->
<nav class="collapses">
<ul>
<li><a href="work.html">work</a></li>
<li><a href="about.html">about</a></li>
<li><a href="blog.html">blog</a></li>
<li><a href="#">contact</a></li>
</ul>
<div class="social-bar">
<a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-behance" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-dribbble" aria-hidden="true"></i></a>
</div>
</nav>
</div><!--End #home-navigation-->
<section id="blog-wrapper">
<div id="fullpage" class="container-fluid">
<div class="row">
<div class="blog-item odd col-lg-12 col-md-12 col-sm-12 col-xs-12 section">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 blog-image">
<div style="background-image:url('img/blog-demo-1.jpg');"></div>
</div>
<!-- /.col-lg-6 -->
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 blog-post">
<h3 class="post-category"><a href="#">Photography</a></h3>
<h1 class="post-title"><a href="blog-detail.html">Shooting and Seeing Art in Automobiles</a></h1>
</div>
<!-- /.col-lg-6 -->
</div>
<!-- /.blog-item -->
<div class="blog-item even col-lg-12 col-md-12 col-sm-12 col-xs-12 section">
<div class="col-lg-6 col-md-6 col-lg-push-6 col-md-push-6 blog-image">
<div style="background-image:url('img/blog-demo-2.jpg');"></div>
</div>
<!-- /.col-lg-6 -->
<div class="col-lg-6 col-md-6 col-lg-pull-6 col-md-pull-6 blog-post">
<h3 class="post-category"><a href="#">Tips</a></h3>
<h1 class="post-title"><a href="blog-detail.html">Portrait Tips: Consider the Background</a></h1>
</div>
<!-- /.col-lg-6 -->
</div>
<!-- /.blog-item -->
<div class="blog-item odd col-lg-12 col-md-12 col-sm-12 col-xs-12 section">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 blog-image">
<div style="background-image:url('img/blog-demo-1.jpg');"></div>
</div>
<!-- /.col-lg-6 -->
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 blog-post">
<h3 class="post-category"><a href="#">Photography</a></h3>
<h1 class="post-title"><a href="blog-detail.html">Shooting and Seeing Art in Automobiles</a></h1>
</div>
<!-- /.col-lg-6 -->
</div>
<!-- /.blog-item -->
</div>
<!-- /.row -->
</div>
<!-- /.container-fluid -->
</section>
<!-- /#blog-wrapper -->
<!-- Bootstrap core JavaScript -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.fullPage.min.js"></script>
<script src="js/main-script.js"></script>
</body>
</html>