data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

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

refactor: change placement of rss button so it doesnt mess up the tooltip of recent visitors box

dusk 39011085 3fd42bea

+8 -8
+8 -8
src/routes/+layout.svelte
··· 182 182 <a class="hover:underline" href="https://xn--sr8hvo.ws">indieweb</a> 183 183 <a title="next site" class="hover:underline" href="https://xn--sr8hvo.ws/next">⮞</a> 184 184 </div> 185 + {#if isRoute('entries') || isRoute('log')} 186 + <div class="navbox !gap-1"> 187 + rss: 188 + <a class="align-middle hover:underline" href="/entries/_rss">posts</a> 189 + / 190 + <a class="align-middle hover:underline" href="/log/_rss">log</a> 191 + </div> 192 + {/if} 185 193 <Tooltip> 186 194 {#snippet tooltipContent()} 187 195 <p class="font-monospace"> ··· 204 212 </p> 205 213 </div> 206 214 </Tooltip> 207 - {#if isRoute('entries') || isRoute('log')} 208 - <div class="navbox !gap-1"> 209 - rss: 210 - <a class="align-middle hover:underline" href="/entries/_rss">posts</a> 211 - / 212 - <a class="align-middle hover:underline" href="/log/_rss">log</a> 213 - </div> 214 - {/if} 215 215 </div> 216 216 </div> 217 217 </nav>