decentralized and customizable links page on top of atproto ligo.at
atproto link-in-bio python uv
at main 28 lines 1.1 kB view raw
1<!doctype html> 2<html> 3 <head> 4 <meta charset="utf-8" /> 5 <title>oops! &mdash; ligo.at</title> 6 <meta name="viewport" content="width=device-width, initial-scale=1" /> 7 <link rel="stylesheet" href="{{ url_for('static', filename='inter.css') }}" /> 8 <link rel="stylesheet" href="{{ url_for('static', filename='profile/default.css') }}" /> 9 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" /> 10 <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16.png') }}" /> 11 <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon-32.png') }}" /> 12 <link rel="icon" type="image/png" sizes="48x48" href="{{ url_for('static', filename='favicon-48.png') }}" /> 13 </head> 14 <body> 15 <div class="wrapper error"> 16 <header> 17 <h1>oops!</h1> 18 </header> 19 <p>{{ message }}</p> 20 <footer> 21 <p> 22 <a href="/">home</a> 23 </p> 24 {% include "_footerlinks.html" %} 25 </footer> 26 </div> 27 </body> 28</html>