-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed some issues of deleting a content
- Loading branch information
1 parent
42039bc
commit 815bdd0
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -147,3 +147,73 @@ <h2>How to contact me</h2> | |
Hello, I am X. I recently read your work on X topic and am interested in pursuing a follow-up project based [provide some well-thought-out details] on it. If you could provide feedback on the feasibility of this project, share tips from your experience regarding potential challenges, or discuss it further with me, I would greatly appreciate it! | ||
</p> | ||
|
||
</section> | ||
|
||
</div> | ||
|
||
</div> | ||
<!-- Sidebar --> | ||
<div id="sidebar"> | ||
<div class="inner"> | ||
<!-- Menu --> | ||
<nav id="menu"> | ||
<header class="major"> | ||
<h2>Menu</h2> | ||
<h6> | ||
<a href="https://www.linkedin.com/in/rahulbhadani/" class="icon fa-linkedin"><span class="label">LinkedIn</span></a> | ||
<a href="http://github.com/rahulbhadani" class="icon fa-github"><span class="label">Github</span></a> | ||
<a href = "https://www.youtube.com/user/kumarrahulbhadani" class = "icon fa-youtube"><span class="label">YouTube</span></a> | ||
<a href = "https://rahulbhadani.medium.com/" class = "icon fa-medium"><span class="label">Medium</span></a> | ||
</h6> | ||
</header> | ||
<ul> | ||
<li><a href="index.html">Homepage</a></li> | ||
<li><a href="about.html">About</a></li> | ||
<li><a href="publications.html">Publications</a></li> | ||
<li><a href="research.html">Research</a></li> | ||
<li><a href="teaching.html">Teaching</a></li> | ||
<li><a href="media.html">News/Media Coverage</a></li> | ||
|
||
</ul> | ||
</nav> | ||
<!-- Section --> | ||
<section> | ||
<header class="major"> | ||
<h2>Contacts</h2> | ||
</header> | ||
<ul class="contact"> | ||
<li class="fa-envelope-o"><a href="#">[email protected]</a></li> | ||
<li class="fa-home">Department of Electrical and Computer Engineering, The University of Alabama in Huntsville<br /> | ||
Huntsville, AL 35899</li> | ||
</ul> | ||
</section> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Scripts --> | ||
<script src="assets/js/jquery.min.js"></script> | ||
<script src="assets/js/jquery.scrolly.min.js"></script> | ||
<script src="assets/js/jquery.scrollex.min.js"></script> | ||
<script src="assets/js/skel.min.js"></script> | ||
<script src="assets/js/util.js"></script> | ||
<script src="assets/js/jquery.min.js"></script> | ||
<script src="assets/js/browser.min.js"></script> | ||
<script src="assets/js/breakpoints.min.js"></script> | ||
<script src="assets/js/util.js"></script> | ||
<script src="assets/js/main.js"></script> | ||
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]--> | ||
<script> | ||
document.getElementById('theme-toggle').addEventListener('click', function() { | ||
document.body.classList.toggle('dark-theme'); | ||
document.body.classList.toggle('light-theme'); | ||
if (document.body.classList.contains('light-theme')) { | ||
document.querySelector('.fa-sun').style.display = 'inline'; | ||
document.querySelector('.fa-moon').style.display = 'none'; | ||
} else { | ||
document.querySelector('.fa-sun').style.display = 'none'; | ||
document.querySelector('.fa-moon').style.display = 'inline'; | ||
} | ||
}); | ||
</script> | ||
</body> | ||
</html> |