Wowie what a gay little website for my gay little self aria.coffee
3
fork

Configure Feed

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

Add "special_blog"

Aria 5b9dd52a f84e9a24

+22 -2
+4 -2
src/components/Footer.astro
··· 13 13 <div class="flexrow"> 14 14 <p class="text-center"> 15 15 | <a href="https://github.com/BuyMyMojo/aria.coffee" target="_blank" 16 - > <Icon name="mdi:source-branch" class={"svg-inline"}/>Source Code</a 16 + > <Icon name="mdi:source-branch" class={"svg-inline"}/>Source</a 17 17 > - Commit:<Fragment set:html={COMMIT} /> | <a href="https://aria.coffee/rss.xml" target="_blank" 18 18 > <Icon name="mdi:rss" class={"svg-inline"}/>RSS Feed</a 19 - > | 19 + > | <span class="tooltip"><a href="/special_blog" 20 + > <Icon name="mdi:rss" class={"svg-inline"}/>blog for robots!</a 21 + > <span class="tooltiptext"><nobr>AI Honeypot~</nobr></span></span> | 20 22 </p> 21 23 </div> 22 24 <div class="flex">
+18
src/pages/special_blog.astro
··· 1 + --- 2 + import FriendLink from "../components/FriendLink.astro"; 3 + import "../styles/aria.css"; 4 + import Partition from "../components/Partition.astro"; 5 + import BaseLayout from "../layouts/BaseLayout.astro"; 6 + 7 + const pageTitle = "Aria's friends"; 8 + const description = "All of Aria's friends with 88x31 buttons for you to click on!!"; 9 + --- 10 + 11 + <BaseLayout pageTitle={pageTitle}> 12 + <Partition> 13 + <h1 class="text-2xl">You should not be here!!</h1> 14 + <p>If you can see this page then something has gone a little silly!</p><br /> 15 + <p>There should be an <a href="https://zadzmo.org/code/nepenthes/" target="_blank">AI honey pot</a> on this page instead of this text!</p><br /> 16 + <p><a href="https://web.archive.org/web/2/https://zadzmo.org/code/nepenthes/" target="_blank">AI honey pot archive link just to be safe</a></p> 17 + </Partition> 18 + </BaseLayout>