Skip to content

Commit 4e104de

Browse files
committed
add files
1 parent 727f43d commit 4e104de

5 files changed

Lines changed: 27 additions & 48 deletions

File tree

404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h2 class="mb-2">Page Not Found</h2>
1111
<p class="text-muted mb-4">The page you're looking for doesn't exist or has been moved.</p>
1212
<div class="btn-group btn-group-center">
1313
<a href="{{ '/' | relative_url }}" class="btn btn-primary">Go Home</a>
14-
<a href="{{ '/research/' | relative_url }}" class="btn btn-secondary">View Research</a>
14+
<a href="{{ site.main_site.links.research }}" class="btn btn-secondary" target="_blank" rel="noopener">View Research</a>
1515
</div>
1616
</div>
1717
</section>

_data/navigation.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ main:
33
url: https://aidevlab.org
44
external: true
55
- title: Research
6-
url: /research/
6+
url: https://aidevlab.org/research/
7+
external: true
78
- title: Team
89
url: /team/
910
- title: About

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h3>AI & Global Development Lab</h3>
1111
<div class="footer-column">
1212
<h4>Research</h4>
1313
<ul>
14-
<li><a href="{{ '/research/' | relative_url }}">Publications</a></li>
14+
<li><a href="{{ site.main_site.links.research }}" target="_blank" rel="noopener">Publications</a></li>
1515
<li><a href="{{ '/data-code/' | relative_url }}">Data & Code</a></li>
1616
<li><a href="{{ '/gallery/' | relative_url }}">Gallery</a></li>
1717
</ul>

index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: Home
99
<h1 class="hero-title">AI + Earth observation to measure what changes lives—and why.</h1>
1010
<p class="hero-subtitle">We fuse satellite imagery with modern AI to map poverty, conflict, and sustainability from 1984 to today. Then we move beyond prediction to planetary-scale causal inference—identifying what drives change, and what works.</p>
1111
<div class="btn-group btn-group-center">
12-
<a href="{{ '/research/' | relative_url }}" class="btn btn-primary">Explore Research</a>
12+
<a href="{{ site.main_site.links.research }}" class="btn btn-primary" target="_blank" rel="noopener">Explore Research</a>
1313
<a href="{{ '/work-with-us/' | relative_url }}" class="btn btn-secondary">Join Us</a>
1414
<a href="{{ site.main_site.url }}" class="btn btn-ghost" target="_blank" rel="noopener">Main Site</a>
1515
</div>
@@ -126,7 +126,7 @@ title: Home
126126
{% endfor %}
127127
</div>
128128
<div class="mt-6 text-center animate-on-scroll">
129-
<a href="{{ '/research/' | relative_url }}" class="link-arrow">View all publications</a>
129+
<a href="{{ site.main_site.links.research }}" class="link-arrow" target="_blank" rel="noopener">View all publications</a>
130130
</div>
131131
</div>
132132
</section>

research.md

Lines changed: 21 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,26 @@
11
---
2-
layout: default
2+
layout: null
33
title: Research
4-
description: Publications from the AI & Global Development Lab spanning poverty mapping, conflict analysis, sustainability, and causal inference methodology.
4+
permalink: /research/
55
---
66

7-
<div class="page-header page-header-left">
8-
<div class="container">
9-
<h1>Research</h1>
10-
<p class="page-description">
11-
Our work spans poverty mapping, conflict analysis, sustainability measurement, and causal inference methodology. All publications are organized by year.
12-
For full project pages and BibTeX downloads, visit <a href="{{ site.main_site.links.research }}" target="_blank" rel="noopener">{{ site.main_site.name }}/research</a>.
7+
<!doctype html>
8+
<html lang="en">
9+
<head>
10+
<meta charset="utf-8" />
11+
<meta name="viewport" content="width=device-width, initial-scale=1" />
12+
<meta http-equiv="refresh" content="0; url={{ site.main_site.links.research }}" />
13+
<link rel="canonical" href="{{ site.main_site.links.research }}" />
14+
<meta name="robots" content="noindex" />
15+
<title>Redirecting…</title>
16+
<script>
17+
window.location.replace("{{ site.main_site.links.research }}");
18+
</script>
19+
</head>
20+
<body>
21+
<p>
22+
Redirecting to
23+
<a href="{{ site.main_site.links.research }}">{{ site.main_site.name }}/research</a>…
1324
</p>
14-
</div>
15-
</div>
16-
17-
<section class="section-sm">
18-
<div class="container">
19-
<div class="filter-bar" id="theme-filters">
20-
<button class="tag tag-active" type="button" data-filter="all">All</button>
21-
<button class="tag" type="button" data-filter="poverty">Poverty</button>
22-
<button class="tag" type="button" data-filter="conflict">Conflict</button>
23-
<button class="tag" type="button" data-filter="sustainability">Sustainability</button>
24-
<button class="tag" type="button" data-filter="methods">Methods</button>
25-
<button class="tag" type="button" data-filter="software">Software</button>
26-
<button class="tag" type="button" data-filter="text">Text Analysis</button>
27-
</div>
28-
</div>
29-
</section>
30-
31-
<section class="section">
32-
<div class="container">
33-
<div id="publications-list">
34-
{% assign years = "2026,2025,2024,2023,2022,2021,2020,2019,2018,2017,2016,2015,2014" | split: "," %}
35-
{% for year in years %}
36-
{% assign pubs = site.data.publications[year] %}
37-
{% if pubs.size > 0 %}
38-
<div class="year-section" data-year="{{ year }}">
39-
<h2 class="year-heading">{{ year }}</h2>
40-
{% for pub in pubs %}
41-
{% include publication-card.html pub=pub %}
42-
{% endfor %}
43-
</div>
44-
{% endif %}
45-
{% endfor %}
46-
</div>
47-
</div>
48-
</section>
25+
</body>
26+
</html>

0 commit comments

Comments
 (0)