How do you create a ‘link post’ in Zola, so that the URL you include some how redirects the user to a different site?
Hmm, there’s a `redirect_to` front matter attribute, but it’s only for Section rather than Page and I’m not 100% sure that it supports external sites.
The most flexible way would be a tiny template with a `meta http-equiv=“refresh”` tag; you can point that wherever you like, e.g.
<meta http-equiv="refresh" content="0; url=https://some.other.site.com/page.html">