acdc509630
Co-authored-by: hailey <me@haileyok.com> Co-authored-by: Stanislas Signoud <signez@stanisoft.net> Co-authored-by: will berry <wsb@wills-MBP.attlocal.net> Co-authored-by: BlueSkiesAndGreenPastures <will@blueskyweb.xyz> Co-authored-by: Chenyu Huang <itschenyu@gmail.com>
22 lines
571 B
TypeScript
22 lines
571 B
TypeScript
import escapeHTML from 'escape-html'
|
|
|
|
export function linkRedirectContents(link: string): string {
|
|
return `
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="refresh" content="0; URL='${escapeHTML(link)}'" />
|
|
<meta
|
|
http-equiv="Cache-Control"
|
|
content="no-store, no-cache, must-revalidate, max-age=0" />
|
|
<meta http-equiv="Pragma" content="no-cache" />
|
|
<meta http-equiv="Expires" content="0" />
|
|
<style>
|
|
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
</style>
|
|
</head>
|
|
</html>
|
|
`
|
|
}
|