penpot/frontend/resources/templates/challenge.mustache
Juan de la Cruz 9a11dfa7f9
Replace PNG favicon with theme-aware SVG (#11640)
*  Replace PNG favicon with theme-aware SVG

* 🎉 Add color changing favicon to docs page

---------

Co-authored-by: Eva Marco <evamarcod@gmail.com>
2026-09-16 08:36:12 +02:00

20 lines
504 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Penpot - Challenge</title>
<link rel="icon" href="images/favicon.svg" type="image/svg+xml" />
<link rel="icon" href="images/favicon.png" type="image/png" />
<script>
var params = new URL(document.location.toString()).searchParams;
var redirectPath = params.get("redirect");
setTimeout(() => {
location.href = "/#" + redirectPath;
}, 100);
</script>
</head>
<body>
</body>
</html>