[READ-ONLY] Mirror of https://github.com/mrgnw/morganwill.com. morganwill.com
0

Configure Feed

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

Update +page.svelte

+5 -5
+5 -5
src/routes/+page.svelte
··· 82 82 <div class="container"> 83 83 <h1 class="title {active}">{selected}</h1> 84 84 <div class="links"> 85 - {#each links as { url, icon, blurb, title }, index} 86 - <a href={url} target="_blank" aria-label={blurb} on:mouseover={()=> { selected = title; }} 87 - on:focus={() => { selected = title; }} 88 - on:mouseout={() => { selected = 'Morgan'; }} 89 - on:blur={() => { selected = 'Morgan'; }} 85 + {#each links as { url, icon, blurb, title, svg_file }, index} 86 + <a href={url} target="_blank" aria-label={blurb} onmouseover={()=> { selected = title; }} 87 + onfocus={() => { selected = title; }} 88 + onmouseout={() => { selected = 'Morgan'; }} 89 + onblur={() => { selected = 'Morgan'; }} 90 90 transition:fade={{ duration: 800, delay: 150 * index }} 91 91 > 92 92 {#if svg_file}