-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (143 loc) · 4.93 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Shafiqul AI - Technical Blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Shafiqul AI - Technical Blog" />
<meta name="author" content="Md Shafiqul Islam" />
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<!-- css -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/font-awesome.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<!-- start header -->
<header>
<div class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="img/logo.png" alt="logo" class="navbar-logo" /></a>
</div>
<div class="navbar-collapse collapse ">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
</header>
<!-- end header -->
<section id="featured">
<div class="container">
<div id="top-blg-container" class="row">
<!-- Top Blog post will be dynamically generated here -->
</div>
</div>
</section>
<section class="blog-title">
<div class="container title">
<div class="col-md-12">
<h2>Recent Blog Posts</h2>
</div>
</div>
</section>
<section id="content">
<div class="container">
<div class="row">
<!-- blog posts -->
<div class="col-md-9">
<div id="postContainer" class="row">
<!-- Blog posts will be dynamically generated here -->
</div>
<div class="load-more">
<a href="#" id="loadMoreLink" class="btn btn-o btn-lg">Load More</a>
</div>
</div>
<!-- Categories -->
<div class="col-md-3 categories">
<h3>Categories</h3>
<ul id="categoryList">
<!-- Categories will be generated dynamically with JavaScript -->
</ul>
</div>
</div>
</div>
</section>
<section class="footer-section">
<div class="container footer">
<div class="row footer">
<div class="col-md-8">
<div class="copyright">
<p>
<span>Copyright © <span id="currentYear"></span> Shafiqul AI | All right reserved. By Md Shafiqul Islam</span>
</p>
</div>
</div>
<div class="col-md-4">
<ul class="social-network">
<li>
<a target="_blank" href="mailto:mdshafiqul.islam603@gmail.com" data-placement="top" title="Gmail">
<img src="img/contact/gmail.png" alt="Gmail">
<span class="icon-label">Gmail</span>
</a>
</li>
<li>
<a target="_blank" href="https://www.linkedin.com/in/shafiqul-islam-sumon/" data-placement="top" title="LinkedIn">
<img src="img/contact/linkedin.png" alt="LinkedIn">
<span class="icon-label">LinkedIn</span>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/shafiqulislamsumon" data-placement="top" title="GitHub">
<img src="img/contact/github.png" alt="GitHub">
<span class="icon-label">GitHub</span>
</a>
</li>
<li>
<a target="_blank" href="https://leetcode.com/u/shafiqul/" data-placement="top" title="LeetCode">
<img src="img/contact/leetcode.png" alt="LeetCode">
<span class="icon-label">LeetCode</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
</div> <!-- end wrapper -->
<a href="#" class="scrollup"><i class="fa fa-angle-up active"></i></a>
<!-- javascript -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="js/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="js/imagesloaded.pkgd.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/smooth-scroll.polyfills.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Initialize SmoothScroll specifically for the scroll-up link
var scrollUp = new SmoothScroll('.scrollup', {
speed: 800, // The speed of the scroll in milliseconds
easing: 'easeInOutCubic' // Easing pattern to use
});
});
</script>
<script>
document.getElementById("currentYear").textContent = new Date().getFullYear();
</script>
</body>
</html>