mirror of
https://github.com/penpot/penpot.git
synced 2026-09-19 10:26:14 +00:00
* ✨ Replace PNG favicon with theme-aware SVG * 🎉 Add color changing favicon to docs page --------- Co-authored-by: Eva Marco <evamarcod@gmail.com>
20 lines
504 B
Plaintext
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>
|