mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-10 21:26:18 +00:00
28 lines
779 B
HTML
28 lines
779 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta
|
|
name="robots"
|
|
content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1"
|
|
/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<!-- OpenGraph -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:image" content="/logo.png" />
|
|
|
|
<!-- Twitter -->
|
|
<meta name="twitter:image" itemprop="image" content="/logo.png" />
|
|
<meta name="twitter:card" content="summary" />
|
|
|
|
%sveltekit.head%
|
|
</head>
|
|
|
|
<body style="background-color: var(--background-one)">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|