Temporary redirect on /studies to go to the homepage until that template is fixed

This commit is contained in:
Andrew Gioia 2026-05-08 10:13:56 -04:00
parent 299cf01171
commit 0a1ee16653
Signed by: andrew
GPG Key ID: FC09694A000800C8
2 changed files with 20 additions and 1 deletions

View File

@ -2,7 +2,7 @@
title: "Accessible design system"
layout: "study"
slug: "honeycomb"
summary: "Building a native-first, accessible design system that could actually be adopted across six very different education products."
summary: "Building a native-first, accessible design system that prioritized adoption across six very different education products."
draft: false
hero:

19
layouts/studies/list.html Normal file
View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
{{- $target := "/#studies" | relURL -}}
<meta charset="utf-8">
<title>Redirecting…</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="refresh" content='0; url={{ $target }}'>
<link rel="canonical" href='{{ "/" | absURL }}'>
<script>
window.location.replace('{{ $target }}');
</script>
</head>
<body>
<p>
Redirecting to <a href='{{ $target }}'>case studies</a>.
</p>
</body>
</html>