-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
103 lines (99 loc) · 4.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
<link rel="stylesheet" href="css/utilities.css">
<link rel="stylesheet" href="css/style.css">
<title>Read Our Blog</title>
</head>
<body>
<header class="hero blog">
<div class="navbar" id="navbar">
<h1 class="logo"><a href="#home" class="logo-btn"><span class="text-primary"><i class="fas fa-book-open"></i>Edge</span></a>Ledger
</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#cases">Cases</a></li>
<li><a href="index.html#blog">Blog</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</div>
<div id="home" class="content">
<h1>Our Stories</h1>
</div>
</header>
<main>
<article class="flex-columns">
<div class="row">
<div class="column">
<div class="column-1">
<img src="img/blog/blog1.jpg" alt="blog1">
</div>
</div>
<div class="column">
<div class="column-2 bg-light">
<h2>Blog post 1</h2>
<p class="meta"><i class="fas fa-user"></i> Posted by <strong>Joe M.</strong> | September 10, 2020
</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Illum deleniti non perspiciatis odio. Iure blanditiis dolor quia fuga ipsa non expedita, optio sed, provident quis earum distinctio facere voluptates animi!</p>
<a href="post.html" class="btn btn-dark"><i class="fas fa-chevron-right"></i> Read More
</a>
</div>
</div>
</div>
</article>
<article class="flex-columns flex-reverse">
<div class="row">
<div class="column">
<div class="column-1">
<img src="img/blog/blog2.jpg" alt="blog2">
</div>
</div>
<div class="column">
<div class="column-2 bg-dark">
<h2>Blog post 2</h2>
<p class="meta"><i class="fas fa-user"></i> Posted by <strong>Janet Lo</strong> | September 15, 2020
</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Illum deleniti non perspiciatis odio. Iure blanditiis dolor quia fuga ipsa non expedita, optio sed, provident quis earum distinctio facere voluptates animi!</p>
<a href="post.html" class="btn btn-light"><i class="fas fa-chevron-right"></i> Read More
</a>
</div>
</div>
</div>
</article>
<article class="flex-columns">
<div class="row">
<div class="column">
<div class="column-1">
<img src="img/blog/blog3.jpg" alt="blog3">
</div>
</div>
<div class="column">
<div class="column-2 bg-light">
<h2>Blog post 3</h2>
<p class="meta"><i class="fas fa-user"></i> Posted by <strong>John Doe</strong> | October 30, 2020
</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Illum deleniti non perspiciatis odio. Iure blanditiis dolor quia fuga ipsa non expedita, optio sed, provident quis earum distinctio facere voluptates animi!</p>
<a href="post.html" class="btn btn-dark"><i class="fas fa-chevron-right"></i> Read More
</a>
</div>
</div>
</div>
</article>
</main>
<footer class="footer bg-dark">
<div class="social">
<a href="#"><i class="fab fa-facebook fa-2x"></i></a>
<a href="#"><i class="fab fa-twitter fa-2x"></i></a>
<a href="#"><i class="fab fa-youtube fa-2x"></i></a>
<a href="#"><i class="fab fa-linkedin fa-2x"></i></a>
</div>
<p>Copyright © 2020 - Edgeledger</p>
</footer>
</body>
</html>