-
Notifications
You must be signed in to change notification settings - Fork 1
/
posts.html
82 lines (71 loc) · 2.95 KB
/
posts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Blog posts</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet">
<link rel="stylesheet" href="post/css/bootstrap.css">
<link rel="stylesheet" href="post/css/font-awesome.min.css">
<link rel="stylesheet" href="post/style.css">
<link rel="stylesheet" href="post/responsive.css">
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="container">
<div class="row">
<div class="col-md-2">
<div class="logo">
<h2><a href="index.html">BrainAndBinary</a></h2>
</div>
</div>
<div class="col-md-10">
<div class="menu">
<ul>
<li><a href="#">All posts</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<section class="single-blog-area">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="border-top">
<div class="col-md-8">
<div class="blog-area">
<div class="blog-area-part">
<!-- Post starts -->
<ul>
<li>
<a href="implicit.html">Scala implict</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<script src="post/js/jquery-3.1.1.min.js"></script>
<script src="post/js/bootstrap.min.js"></script>
<script src="post/js/active.js"></script>
<script data-ad-client="ca-pub-7728027388568000" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-175880637-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-175880637-1');
</script>
</body>
</html>