this repo has no description yoyle.city
nekoweb html css javascript astro
at main 20 lines 573 B view raw
1--- 2import HeadTags from "../components/HeadTags.astro"; 3const { title = "yoyle.city", description = "my cozy lil website" } = Astro.props; 4--- 5 6<!DOCTYPE html> 7<html lang="en"> 8 <head> 9 <title>{title}</title> 10 <meta name="description" content={description} /> 11 <meta property="og:title" content={title} /> 12 <meta property="og:description" content={description} /> 13 <HeadTags /> 14 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css" /> 15 <meta name="generator" content={Astro.generator} /> 16 </head> 17 <body> 18 <slot /> 19 </body> 20</html>