[WIP] A (somewhat barebones) atproto app for creating custom sites without hosting!
at main 31 lines 677 B view raw
1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <title>atcities.dev</title> 7 8 <style> 9 :root { 10 color-scheme: light dark; 11 } 12 13 dt { 14 font-weight: bold; 15 } 16 </style> 17 </head> 18 <body> 19 <h1>atcities.dev</h1> 20 <dl> 21 <dt>Visit someones site by handle:</dt> 22 <dd>Head to <code>https://HANDLE.atcities.dev</code></dd> 23 24 <dt>Visit someones site by DID:</dt> 25 <dd>Head to <code>https://DID.DID-METHOD.atcities.dev</code></dd> 26 27 <dt>Create your own site:</dt> 28 <dd>Suffer</dd> 29 </dl> 30 </body> 31</html>