my tanglesite :O june.tngl.io
1

Configure Feed

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

index: add opengraph meta

june (Jul 6, 2026, 5:54 PM +0200) e707f8b7 08be3df8

+11 -1
+11 -1
lua/init.lua
··· 14 14 15 15 local function head() 16 16 local title = "juneeeee" 17 + local description = "meow meow meow meow meow meow meow meow" 18 + local canonical = "https://june.tngl.io" 19 + 17 20 return h.head({ 18 21 h.meta({ charset = "utf-8" }), 19 22 h.meta({ name = "viewport", content = "width=device-width, initial-scale=1" }), ··· 21 24 h.meta({ name = "darkreader-lock" }), 22 25 h.title(title), 23 26 h.meta({ name = "title", content = title }), 27 + h.meta({ name = "description", content = description }), 28 + h.meta({ name = "theme-color", content = "#cbe3b3" }), 24 29 h.link({ rel = "stylesheet", href = "/static/styles.css" }), 25 - h.link({ rel = "canonical", href = "https://june.tngl.io" }), 30 + h.link({ rel = "canonical", href = canonical }), 26 31 h.link({ 27 32 rel = "icon", 28 33 href = site .. "/img/favicon.ico", ··· 33 38 rel = "me atproto", 34 39 href = "https://bsky.app/profile/" .. did, 35 40 }), 41 + h.meta({ property = "og:title", content = title }), 42 + h.meta({ property = "og:description", content = description }), 43 + h.meta({ property = "og:locale", content = "es_US" }), 44 + h.meta({ property = "og:type", content = "website" }), 45 + h.meta({ property = "og:url", content = canonical }), 36 46 }) 37 47 end 38 48