Files for my website bwc9876.dev
0
fork

Configure Feed

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

VT for blog titles

Ben C d65209e2 a35496f9

+2 -2
+1 -1
src/pages/blog/[...slug].astro
··· 15 15 --- 16 16 17 17 <Layout title={entry.data.title} description={entry.data.summary}> 18 - <h1 class="gradient-text">{entry.data.title}</h1> 18 + <h1 transition:name={`blog-title-${entry.id}`} class="gradient-text">{entry.data.title}</h1> 19 19 <div class="wrapper"> 20 20 <div class="toc-wrapper"> 21 21 <nav aria-labelledby="on-this-page" class="toc">
+1 -1
src/pages/blog/index.astro
··· 19 19 { 20 20 blogEntries.map((p) => ( 21 21 <article> 22 - <h2> 22 + <h2 transition:name={`blog-title-${p.id}`}> 23 23 <a href={`/blog/${p.id}`}>{p.data.title}</a> 24 24 </h2> 25 25 <p>{p.data.date.toLocaleDateString(undefined, options)}</p>