Skip to content

Commit 5bbc006

Browse files
committed
2 parents 09b68b4 + c53b1f7 commit 5bbc006

4 files changed

Lines changed: 21 additions & 19 deletions

File tree

index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
<h1>Advancing interdisciplinary data science through human-AI partnership</h1>
201201
<p class="sub">An experimental virtual laboratory connecting researchers and domain experts to democratize AI implementation across disciplines.</p>
202202
<div class="hero-ctas">
203-
<a class="btn btn-gold" href="people.html">Become a Researcher &rarr;</a>
203+
<a class="btn btn-gold" href="recruitment.html">Become a Researcher &rarr;</a>
204204
<a class="btn btn-outline" href="#mission">Explore Our Mission</a>
205205
</div>
206206
</div>
@@ -274,25 +274,25 @@ <h2>Pathways for researchers at every stage</h2>
274274
<span class="eyebrow2">OMSCS Students &middot; CS 8903 &amp; CS 6999</span>
275275
<h3>Interdisciplinary Data Science Research for Social Good</h3>
276276
<p>HAAG's flagship program. Earn up to 3 semesters of academic credit for interdisciplinary projects.</p>
277-
<a class="cta-link" href="#">Learn more &rarr;</a>
277+
<a class="cta-link" href="data-science-research.html">Learn more &rarr;</a>
278278
</div>
279279
<div class="program-card">
280280
<span class="eyebrow2">Faculty &middot; Any Global Institution</span>
281281
<h3>Faculty Affiliates for Transdisciplinary Expansion (FATE)</h3>
282282
<p>A community of practice for faculty advancing interdisciplinary science teams.</p>
283-
<a class="cta-link" href="#">Learn more &rarr;</a>
283+
<a class="cta-link" href="faculty-affiliates.html">Learn more &rarr;</a>
284284
</div>
285285
<div class="program-card">
286286
<span class="eyebrow2">OMSCS Students &middot; MGT 8803 &amp; CS 8903</span>
287287
<h3>Research Operations Project Management Practicum</h3>
288288
<p>MBA and computing students partner to manage real AI research projects.</p>
289-
<a class="cta-link" href="#">Learn more &rarr;</a>
289+
<a class="cta-link" href="project-management.html">Learn more &rarr;</a>
290290
</div>
291291
<div class="program-card">
292292
<span class="eyebrow2">PhD &amp; Postdoc &middot; Any Global Institute</span>
293293
<h3>Cross-Disciplinary Leadership Education for Advanced Researchers (CLEAR)</h3>
294294
<p>HAAG's premier leadership program for PhDs and postdocs in a live research environment.</p>
295-
<a class="cta-link" href="#">Learn more &rarr;</a>
295+
<a class="cta-link" href="phd-postdoc.html">Learn more &rarr;</a>
296296
</div>
297297
<div class="program-card">
298298
<span class="eyebrow2">Certificate Program &middot; Graduate</span>

project-explorer.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -485,8 +485,8 @@ <h2 class="page-title">Project Directory</h2>
485485
}
486486

487487
function stripInlineComment(value) {
488-
const hashIndex = value.indexOf('#');
489-
return hashIndex >= 0 ? value.slice(0, hashIndex) : value;
488+
const match = value.match(/(^|\s)#/);
489+
return match ? value.slice(0, match.index) : value;
490490
}
491491

492492
function parseScalar(value) {
@@ -534,9 +534,10 @@ <h2 class="page-title">Project Directory</h2>
534534

535535
const indent = line.match(/^\s*/)[0].length;
536536
if (indent > 0 && currentObjectKey && trimmed.includes(':')) {
537-
const [key, rawValue] = trimmed.split(/:\s*/, 2);
538-
if (rawValue !== undefined) {
539-
result[currentObjectKey][key] = parseScalar(rawValue);
537+
const colonIndex = trimmed.indexOf(':');
538+
const key = trimmed.slice(0, colonIndex);
539+
if (key) {
540+
result[currentObjectKey][key] = parseScalar(trimmed.slice(colonIndex + 1));
540541
}
541542
return;
542543
}

recruitment.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -297,17 +297,17 @@ <h1>Human-Augmented Analytics Group</h1>
297297
<div class="nav-inner">
298298
<a href="index.html">Home</a>
299299
<a href="people.html">People</a>
300-
<a href="#">Faculty Affiliates</a>
301-
<a href="#">PhD / Post-Doc</a>
302-
<a href="#">Research</a>
303-
<a href="#">Project Management</a>
300+
<a href="faculty-affiliates.html">Faculty Affiliates</a>
301+
<a href="phd-postdoc.html">PhD / Post-Doc</a>
302+
<a href="data-science-research.html">Research</a>
303+
<a href="project-management.html">Project Management</a>
304304
<a href="project-explorer.html">Project Explorer</a>
305305
<a href="recruitment.html" class="current">Recruitment Status</a>
306306
</div>
307307
</nav>
308308

309309
<div class="breadcrumb">
310-
<a href="#">HAAG</a><span class="sep">/</span><span class="here">Recruitment Status</span>
310+
<a href="index.html">HAAG</a><span class="sep">/</span><span class="here">Recruitment Status</span>
311311
</div>
312312

313313
<div class="wrap">

team-matching.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,11 @@ <h1>Human-Augmented Analytics Group</h1>
160160
<nav class="nav-bar">
161161
<div class="nav-inner">
162162
<a href="index.html">Home</a>
163-
<a href="#">Faculty Affiliates</a>
164-
<a href="#">PhD / Post-Doc</a>
165-
<a href="#">Research</a>
166-
<a href="#">Project Management</a>
163+
<a href="people.html">People</a>
164+
<a href="faculty-affiliates.html">Faculty Affiliates</a>
165+
<a href="phd-postdoc.html">PhD / Post-Doc</a>
166+
<a href="data-science-research.html">Research</a>
167+
<a href="project-management.html">Project Management</a>
167168
<a href="project-explorer.html">Project Explorer</a>
168169
<a href="recruitment.html">Recruitment Status</a>
169170
</div>

0 commit comments

Comments
 (0)