Spaces:
Sleeping
Sleeping
File size: 1,487 Bytes
ecd5b53 | 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 | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>CANLoc – Protein Subcellular Localization Predictor</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="/static/style.css" />
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="/static/script.js" defer></script>
</head>
<body>
<!-- Fixed Navbar -->
<header class="nav fixed">
<div class="nav-inner">
<div class="nav-left">
<div class="logo-circle">🧬</div>
<div class="logo-text">
<div class="logo-title">Welcome to CANLoc</div>
<div class="logo-sub">A web server for predicting subcellular localization of protein</div>
</div>
</div>
<nav class="nav-links">
<a href="/" class="nav-link">Home</a>
<a href="/about" class="nav-link">About</a>
<a href="/help" class="nav-link">Help</a>
<a href="/contact" class="nav-link">Contact</a>
</nav>
</div>
</header>
<!-- Hero with neon SVG background -->
<section class="hero">
<div class="hero-network"></div>
<div class="hero-inner">
<h1 class="hero-title">
CANLoc<br>
</h1>
<p class="hero-sub">
Subcellular localization predictor of Candida.
</p>
</div>
</section>
{% block content %}{% endblock %}
<footer class="footer">
CANLoc – v1.0 Research/Academic Use Only.
</footer>
</body>
</html>
|