A simple BlueSky profile labeler that can be ran on Cloudflare Workers github.com/SocksTheWolf/SimpleBSkyLabeler
cf bsky profile label bluesky cloudflare workers
at main 21 lines 732 B view raw
1<!doctype html> 2<html data-theme="dark"> 3<head> 4<title>{{TITLE}} - 404</title> 5<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png"> 6<meta name="robots" content="noindex, nofollow" /> 7<link rel="stylesheet" href="/css/pico.min.css" /> 8<script type="text/javascript" src="/js/htmx.min.js"></script> 9<script type="text/javascript" src="/js/htmx-ext-response-targets.min.js"></script> 10</head> 11<body hx-ext="response-targets"> 12 <main class="container"> 13 <article> 14 <header><h1>404: Not Found</h1></header> 15 This page cannot be found!<br /><br /> 16 <h6><a href="/" title="Go to homepage" class="secondary">&lt;- Go Back</a></h6> 17 <footer></footer> 18 </article> 19 </main> 20</body> 21</html>