Personal Site
0
fork

Configure Feed

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

add an image field i cant be fucked to make it look good lol

this marks the completion of the index page !! the rest should (i hope) be a scoosh sooo yay)

+3 -2
+3 -2
src/components/Base.astro
··· 7 7 description: string; 8 8 url: string; 9 9 type?: "website" | "article" | `${"music" | "video"}.${string}`; 10 + image?: string; 10 11 }; 11 12 } 12 13 ··· 33 34 <meta property="og:type" content={graph.type ?? "website"} /> 34 35 <meta property="og:title" content={title} /> 35 36 <meta property="og:description" content={graph.description} /> 36 - <meta property="og:image" content="" /> 37 + {graph.image && <meta property="og:image" content={graph.image} />} 37 38 38 39 <!-- twt card markup --> 39 40 <meta name="twitter:card" content="summary_large_image" /> 40 41 <meta name="twitter:title" content={title} /> 41 42 <meta name="twitter:description" content={graph.description} /> 42 - <meta name="twitter:image" content="" /> 43 + {graph.image && <meta name="twitter:image" content={graph.image} />} 43 44 44 45 <style is:global> 45 46 @layer reset {