-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlatest-news.html
More file actions
146 lines (136 loc) · 6.2 KB
/
latest-news.html
File metadata and controls
146 lines (136 loc) · 6.2 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Latest News — BioComplex Lab</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<nav>
<div class="nav-container">
<div class="nav-brand">
<a href="index.html"><img src="Images/logo.png" alt="BioComplex Lab"></a>
</div>
<button class="nav-toggle" aria-label="Toggle navigation" aria-expanded="false">
<span></span><span></span><span></span>
</button>
<ul class="nav-menu">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="research.html" class="nav-link">Research</a></li>
<li><a href="latest-news.html" class="nav-link active">Latest News</a></li>
<li><a href="collaborators.html" class="nav-link">Collaborators</a></li>
<li><a href="projects.html" class="nav-link">Projects</a></li>
<li><a href="about-us.html" class="nav-link">About Us</a></li>
<li><a href="join-the-lab.html" class="nav-cta">Join the Lab</a></li>
</ul>
</div>
</nav>
</header>
<div class="page-header">
<div class="section-inner">
<h1><em>Latest</em> News</h1>
<p>Updates from the lab — publications, events, team news, and more.</p>
</div>
</div>
<section class="section section-tint">
<div class="section-inner fade-in">
<span class="section-label">2025</span>
<div class="news-list-grid mt-sm">
<a href="#" class="news-card">
<div class="news-card-img">Image placeholder</div>
<div class="news-card-body">
<span class="news-tag">Publication</span>
<h3>New paper: [Title placeholder]</h3>
<p>Brief description of the paper and its key findings. Replace with actual content.</p>
<span class="news-date">Month 2025</span>
</div>
</a>
<a href="#" class="news-card">
<div class="news-card-img">Image placeholder</div>
<div class="news-card-body">
<span class="news-tag">Lab News</span>
<h3>New team member joins the lab</h3>
<p>We welcome [Name] who joins as [role]. Brief bio and research focus placeholder.</p>
<span class="news-date">Month 2025</span>
</div>
</a>
<a href="#" class="news-card">
<div class="news-card-img">Image placeholder</div>
<div class="news-card-body">
<span class="news-tag">Award</span>
<h3>[Name] receives [Award name] grant</h3>
<p>Description of the award and what the funding will be used for. Placeholder text.</p>
<span class="news-date">Month 2025</span>
</div>
</a>
<a href="#" class="news-card">
<div class="news-card-img">Image placeholder</div>
<div class="news-card-body">
<span class="news-tag">Conference</span>
<h3>Lab members present at [Conference Name]</h3>
<p>Recap of our participation and talks presented at the conference. Placeholder text.</p>
<span class="news-date">Month 2025</span>
</div>
</a>
</div>
</div>
</section>
<section class="section section-white">
<div class="section-inner fade-in">
<span class="section-label">2024</span>
<div class="news-list-grid mt-sm">
<a href="#" class="news-card">
<div class="news-card-img">Image placeholder</div>
<div class="news-card-body">
<span class="news-tag">Publication</span>
<h3>New paper: [Title placeholder]</h3>
<p>Brief description of the paper and its key findings. Replace with actual content.</p>
<span class="news-date">Month 2024</span>
</div>
</a>
<a href="#" class="news-card">
<div class="news-card-img">Image placeholder</div>
<div class="news-card-body">
<span class="news-tag">Lab News</span>
<h3>Lab news item placeholder</h3>
<p>Description of this news item. Replace with actual content when available.</p>
<span class="news-date">Month 2024</span>
</div>
</a>
<a href="#" class="news-card">
<div class="news-card-img">Image placeholder</div>
<div class="news-card-body">
<span class="news-tag">Publication</span>
<h3>New paper: [Title placeholder]</h3>
<p>Brief description of the paper and its key findings. Replace with actual content.</p>
<span class="news-date">Month 2024</span>
</div>
</a>
</div>
</div>
</section>
<footer>
<img src="Images/logo.png" alt="BioComplex Lab">
<span>© 2026 BioComplex Lab, University of Exeter</span>
<div class="footer-social">
<a href="#" aria-label="LinkedIn"><img src="Images/icons/square-linkedin-brands-solid.png" alt="LinkedIn"></a>
<a href="#" aria-label="BlueSky"><img src="Images/icons/square-bluesky-brands-solid.png" alt="BlueSky"></a>
</div>
</footer>
<script>
const toggle = document.querySelector('.nav-toggle');
const menu = document.querySelector('.nav-menu');
toggle.addEventListener('click', () => {
const open = menu.classList.toggle('nav-open');
toggle.setAttribute('aria-expanded', open);
});
const observer = new IntersectionObserver(
entries => entries.forEach(e => { if (e.isIntersecting) e.target.classList.add('visible'); }),
{ threshold: 0.08 }
);
document.querySelectorAll('.fade-in').forEach(el => observer.observe(el));
</script>
</body>
</html>