Personal Site
0
fork

Configure Feed

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

Add a rough scaffold of structure for a post

+12
+12
src/components/home/feeds/Post.astro
··· 68 68 })(); 69 69 --- 70 70 71 + <article class="post" style={`--box-tlbr-png: url(${BoxTlbr.src});`}> 72 + <section class="author"> 73 + <div class="handle">@{author.handle}</div> 74 + </section> 75 + <div class="link"> 76 + </div> 77 + <hr /> 78 + <section class="content"> 79 + <div class="post-text">{post.text}</div> 80 + <div class="embed">{(() => {})()}</div> 81 + </section> 82 + </article> 71 83 72 84 <style> 73 85 .post {