Skip to content

Commit 6bff9cb

Browse files
Update
add Sami's Research Portal
1 parent 46680b3 commit 6bff9cb

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5501
3+
}

assets/js/custom-popover.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
document.addEventListener('DOMContentLoaded', function() {
2+
const infoModal = new bootstrap.Modal(document.getElementById('infoModal'));
3+
const dontShowAgainCheckbox = document.getElementById('dontShowAgain');
4+
const localStorageKey = 'hideInfoModal';
5+
6+
// Check if the user has opted to hide the modal
7+
if (localStorage.getItem(localStorageKey) !== 'true') {
8+
infoModal.show();
9+
}
10+
11+
// Add an event listener for when the modal is hidden
12+
const myModalEl = document.getElementById('infoModal');
13+
myModalEl.addEventListener('hidden.bs.modal', function() {
14+
// If the checkbox is checked, save the preference to local storage
15+
if (dontShowAgainCheckbox.checked) {
16+
localStorage.setItem(localStorageKey, 'true');
17+
}
18+
});
19+
});

index.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,14 @@
3636
]
3737
}
3838
</script>
39+
3940
</head>
4041

4142
<body data-spy="scroll" data-target=".navbar" data-offset="40" id="home">
4243

4344
<!-- <a href="//" class="btn btn-primary btn-component" data-spy="affix" data-offset-top="600"><i class="ti-shift-left-alt"></i>Side Button</a> -->
4445
<div class="btn btn-success font-weight-bold btn-component" data-spy="affix" data-offset-top="600"><i class="ti-shift-left-alt"></i><a href="/hobbies.html">Hobbies & Wishes</a></div>
45-
46+
4647
<header class="header">
4748
<div class="container">
4849
<ul class="social-icons pt-3">
@@ -114,6 +115,11 @@ <h3 class="font-weight-light">Who am I ?</h3>
114115
<h5 class="mb-3">A Backend Developer Located In Our Lovely Earth</h5>
115116
<p class="mt-20">I build powerful systems behind the scenes—simple, secure, and scalable. Rooted in code, driven by curiosity, and inspired by nature.</p>
116117

118+
<h3 class="font-weight-light">Research</h3>
119+
<span class="line mb-5"></span>
120+
<h5 class="mb-3">My Research Work</h5>
121+
<p class="mt-20"><a class="btn btn-outline-dark" href="https://research-by-sami.vercel.app">Research By Sami</a></p>
122+
117123
</div>
118124
<div class="col-lg-4 about-card">
119125
<h3 class="font-weight-light">Personal Info</h3>
@@ -840,7 +846,7 @@ <h6 class="d-inline">Email :<br> <span class="text-muted">saidulmallick753@gmail
840846
</p>
841847
</div>
842848
</footer>
843-
849+
<script src="assets/js/custom-popover.js"></script>
844850
<!-- core -->
845851
<script src="assets/vendors/jquery/jquery-3.4.1.js"></script>
846852
<script src="assets/vendors/bootstrap/bootstrap.bundle.js"></script>
@@ -853,6 +859,7 @@ <h6 class="d-inline">Email :<br> <span class="text-muted">saidulmallick753@gmail
853859

854860
<!-- JohnDoe js -->
855861
<script src="assets/js/scripts.js"></script>
862+
856863

857864
</body>
858865
</html>

skills.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ <h2 class="text-light mb-5 font-weight-normal">I Am Available For Work</h2>
238238
<footer class="footer py-3">
239239
<div class="container">
240240
<p class="small mb-0 text-light">
241-
&copy; <script>document.write(new Date().getFullYear())</script> Created With <i class="ti-heart text-danger"></i> By <a href="#Home" target="_blank"><span class="text-danger" title="Bootstrap 4 Themes and Dashboards">Saidul Ali Mallick</span></a>
241+
&copy; <script>document.write(new Date().getFullYear())</script> Created With <i class="ti-heart text-danger"></i> By <a href="#Home" target="_blank"><span class="text-danger" title="Saidul Ali Mallick">Saidul Ali Mallick</span></a>
242242
</p>
243243
</div>
244244
</footer>

0 commit comments

Comments
 (0)