mestizo.monster/redirects.njk
taco f1b8097978 feat: migrate to 11ty (#1)
alas, hugo. we hardly knew ye.

Reviewed-on: https://git.tacowolf.net/TacoWolf/mestizo.monster/pulls/1
Co-authored-by: taco <signing@tacowolf.net>
Co-committed-by: taco <signing@tacowolf.net>
2026-04-10 19:48:32 -04:00

21 lines
518 B
Text

---
pagination:
data: collections.redirects
size: 1
alias: redirect
permalink: "{{ redirect[1] }}"
layout: ""
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="refresh" content="1; URL='{{ redirect[0] }}'" />
<title>Redirecting to: {{ redirect[0] }}</title>
</head>
<body>
You should be redirecting to <a href="{{ redirect[0] }}">{{ redirect[0] }} now</a>.
</body>
</html>