-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (61 loc) · 3.89 KB
/
Copy pathindex.html
File metadata and controls
69 lines (61 loc) · 3.89 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="A comprehensive Crustacean Neuropeptide Database offers FASTA peptide sequences, physicochemical properties, and biological functions for in-depth, multidisciplinary neuropeptide research" />
<meta name="author" content="Lingjun Li Lab" />
<meta name="keywords" content="mass spectrometry, crustacean neuropeptides, peptidomics, neuropeptide database, FASTA sequences" />
<title>Crustacean Neuropeptide Database</title>
<link rel="icon" type="image/x-icon" href="Assets/Img/LiClaw.Dark.png" />
<!-- Font Awesome icons (free version)-->
<script src="https://kit.fontawesome.com/363bd5a7c4.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="styles.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/showdown/dist/showdown.min.js"></script>
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="sideNav" style="background-color: #2a2541;">
<a class="navbar-brand" href="index.html">
<span class="d-block d-lg-none">Crustacean Neuropeptide Database</span>
<span class="d-none d-lg-block"><img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="Assets/Img/Website_Logo_2.png" alt="Crustacean Neuropeptide Database" /></span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="NavBar/About.html">About</a></li>
<li class="nav-item"><a class="nav-link" href="NavBar/NP_Database_Search.html">NP Database Search</a></li>
<li class="nav-item"><a class="nav-link" href="NavBar/Tools.html">Tools</a></li>
<li class="nav-item"><a class="nav-link" href="NavBar/Related_Databases.html">Related Databases and Resources</a></li>
<li class="nav-item"><a class="nav-link" href="NavBar/Tutorials.html">Tutorials</a></li>
<li class="nav-item"><a class="nav-link" href="NavBar/Statistics.html">Statistics</a></li>
<li class="nav-item"><a class="nav-link" href="NavBar/Glossary.html">Glossary</a></li>
<li class="nav-item"><a class="nav-link" href="NavBar/FAQ.html">Frequently Asked Questions</a></li>
<li class="nav-item"><a class="nav-link" href="NavBar/Contact_Us.html">Contact Us</a></li>
</ul>
</div>
</nav>
<div id="readme-container"></div>
<script>
async function loadReadme() {
const response = await fetch('README.md');
const markdownText = await response.text();
// Convert Markdown to HTML using a parser
const converter = new showdown.Converter();
const htmlContent = converter.makeHtml(markdownText);
// Inject the HTML into the page
document.getElementById('readme-container').innerHTML = htmlContent;
}
loadReadme();
</script>
<!-- Load Showdown Markdown Parser -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js"></script>
</body>>