-
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.
- Loading branch information
1 parent
a7f8027
commit 7e1e691
Showing
17 changed files
with
901 additions
and
465 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
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> | ||
<link rel="stylesheet" href="css/style.css" /> | ||
<link rel="stylesheet" href="css/background.css" /> | ||
<link rel="apple-touch-icon" sizes="180x180" href="img/favicons/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="img/favicons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="img/favicons/favicon-16x16.png"> | ||
<link rel="manifest" href="img/favicons/site.webmanifest"> | ||
<title>Publications</title> | ||
</head> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | ||
|
||
<body> | ||
<!-- Navigation bar --> | ||
<div class="header"> | ||
<nav class=" navbar navbar-fixed-top navbar-expand-lg nav-bg-color navbar-dark shadow"> | ||
<div class="container"> | ||
<a href="index.html#" class="navbar-brand">Subrata Das</a> | ||
|
||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navmenu"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
|
||
<div class="collapse navbar-collapse" id="navmenu"> | ||
<ul class="navbar-nav ms-auto"> | ||
<!-- <li class="nav-item active"> | ||
<a href="#home" class="nav-link">Home</a> | ||
</li> --> | ||
<li class="nav-item"> | ||
<a href="index.html#aboutme" class="nav-link">About Me</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a href="index.html#research" class="nav-link">Research</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a href="publications.html" class="nav-link">Publication</a> | ||
</li> | ||
<!-- <li class="nav-item"> | ||
<a href="etc.html" class="nav-link">.etc</a> | ||
</li> --> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
</div> | ||
|
||
<section id="publication" class="p-5"> | ||
<div class="container"> | ||
<h1 class="txt_color_h">Publications and Preprints</h1> | ||
<table class="table"> | ||
<tr style="height: 60px;font-size: 20px;color: rgb(126, 133, 135);"> | ||
<!-- <th data-column="No" data-order="desc" class="noselect"></th> --> | ||
<th data-column="Name" data-order="desc" class="noselect">Year</th> | ||
<th data-column="Country" data-order="desc" class="noselect">Article</th> | ||
</tr> | ||
<tbody class="txt_color" id="myTable"> | ||
|
||
</tbody> | ||
</table> | ||
</div> | ||
</section> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" | ||
crossorigin="anonymous"></script> | ||
|
||
<script src="js/background.js"></script> | ||
<script src="js/pubs.js"></script> | ||
</body> | ||
|
||
</html> |