This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / app.html
1.2 kB 27 lines
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="utf-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> 6 <meta name="description" content="The next-generation social coding platform." /> 7 <meta property="og:site_name" content="Tangled" /> 8 <meta property="og:type" content="website" /> 9 <meta property="og:locale" content="en_US" /> 10 <meta 11 name="keywords" 12 content="git, code collaboration, AT Protocol, open source, version control, social coding, code hosting" 13 /> 14 <meta name="author" content="Tangled" /> 15 <meta name="robots" content="index, follow" /> 16 <link rel="icon" href="/logos/dolly.ico" sizes="48x48" /> 17 <link rel="icon" href="/logos/dolly.svg" sizes="any" type="image/svg+xml" /> 18 <link rel="apple-touch-icon" href="/logos/dolly.png" /> 19 <link rel="preconnect" href="https://avatar.tangled.sh" /> 20 <link rel="preconnect" href="https://camo.tangled.sh" /> 21 <link rel="preload" href="/fonts/InterVariable.woff2" as="font" type="font/woff2" crossorigin /> 22 %sveltekit.head% 23 </head> 24 <body data-sveltekit-preload-data="hover" class="flex min-h-screen flex-col gap-4"> 25 <div style="display: contents">%sveltekit.body%</div> 26 </body> 27</html>