-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
114 lines (108 loc) · 5.06 KB
/
portfolio.html
File metadata and controls
114 lines (108 loc) · 5.06 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Biodyn Portfolio — Active Research Projects</title>
<meta name="description" content="Detailed portfolio of active Biodyn research projects with annotated descriptions.">
<link rel="canonical" href="https://biodynai.com/portfolio.html">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Biodyn">
<meta property="og:url" content="https://biodynai.com/portfolio.html">
<meta property="og:title" content="Biodyn Portfolio — Active Research Projects">
<meta property="og:description" content="Detailed portfolio of active Biodyn research projects with annotated descriptions.">
<meta property="og:image" content="https://biodynai.com/content/social-preview.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Biodyn portfolio social preview">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Biodyn Portfolio — Active Research Projects">
<meta name="twitter:description" content="Detailed portfolio of active Biodyn research projects with annotated descriptions.">
<meta name="twitter:image" content="https://biodynai.com/content/social-preview.png">
<meta name="twitter:image:alt" content="Biodyn portfolio social preview">
<script>
(() => {
const storedTheme = localStorage.getItem('biodyn-theme');
const systemPrefersLight = window.matchMedia('(prefers-color-scheme: light)').matches;
const theme = storedTheme === 'light' || storedTheme === 'dark'
? storedTheme
: (systemPrefersLight ? 'light' : 'dark');
document.documentElement.dataset.theme = theme;
})();
</script>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
</head>
<body>
<!-- Navigation -->
<nav class="nav" id="nav">
<div class="container">
<a href="index.html" class="nav-logo">Biodyn</a>
<ul class="nav-links" id="navLinks">
<li><a href="index.html#vision">Vision</a></li>
<li><a href="index.html#research">Research</a></li>
<li><a href="index.html#methodology">Methodology</a></li>
<li><a href="index.html#impact">Impact</a></li>
<li><a href="index.html#atlases">Atlases</a></li>
<li><a href="index.html#publications">Research Outputs</a></li>
<li><a href="index.html#team">Team</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html" class="nav-current">Portfolio</a></li>
<li>
<button type="button" class="theme-toggle" id="themeToggle" aria-label="Toggle color theme">
Theme
</button>
</li>
<li><a href="https://github.com/orgs/Biodyn-AI/repositories" target="_blank" rel="noopener" class="nav-cta">GitHub →</a></li>
</ul>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
<!-- Portfolio Hero -->
<section class="portfolio-page-hero section" id="portfolioHero">
<div class="mesh-bg"></div>
<div class="container">
<div class="section-header reveal">
<span class="section-label">Portfolio</span>
<h1 class="section-title">Active research projects</h1>
<p class="section-subtitle">
Detailed catalog of current Biodyn projects, each with a short annotation and status.
</p>
</div>
<div class="portfolio-page-actions reveal reveal-delay-1">
<a href="index.html" class="btn-secondary">← Back to Main Page</a>
<a href="blog.html" class="btn-primary">View Blog</a>
</div>
</div>
</section>
<!-- Portfolio List -->
<section class="portfolio section" id="portfolioCatalog">
<div class="container">
<div class="portfolio-list" id="portfolioList" aria-live="polite"></div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<span class="footer-logo">Biodyn</span>
<span class="footer-text">© 2026 Biodyn Research Project. All rights reserved.</span>
<div class="footer-links">
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
<a href="https://github.com/orgs/Biodyn-AI/repositories" target="_blank" rel="noopener">GitHub</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdfnxPmdCtrHqDenf0VECp3H0sphOy1uEfQ1UYsbO3NwCVlkQ/viewform?usp=dialog" target="_blank" rel="noopener">Contact Form</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSedo8RPXfIl5ISE2ar7TDx9Me0vlVwfCHOzZ8NI7BDNiueTsw/viewform?usp=sharing&ouid=108024776730411231677" target="_blank" rel="noopener">Subscribe</a>
<a href="mailto:kenduhov.ig@gmail.com">Contact</a>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>