decentralized and customizable links page on top of atproto ligo.at
atproto link-in-bio python uv
at main 61 lines 2.8 kB view raw
1<!doctype html> 2<html> 3 <head> 4 <meta charset="utf-8" /> 5 <title>terms of service &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"> 16 <header> 17 <h1>terms of service</h1> 18 <span class="tagline">last updated: October 16th, 2025</span> 19 </header> 20 21 <p> 22 Welcome to ligo.at (“we,” “our,” or “us”). By accessing or using this website (the “Service”), 23 you agree to these Terms of Service (“Terms”). If you do not agree, please do not use the Service. 24 </p> 25 26 <p> 27 By accessing or using our Service, you agree to be bound by these Terms. 28 If you disagree with any part of these terms, then you may not access the Service. 29 </p> 30 31 <p> 32 You retain ownership of the content you upload to the Service. By uploading content, you grant us 33 a non-exclusive, worldwide, royalty-free license to use, reproduce, modify, and distribute your content 34 as necessary to provide the Service. 35 </p> 36 37 <p> 38 We reserve the right to terminate, suspend, or restrict access to your account at any time, for any reason, 39 or for no reason at all, at our sole discretion. This includes, but is not limited to, termination for violation 40 of these Terms, inappropriate conduct, spam, abuse, or any other behavior we deem harmful to the Service or other users. 41 </p> 42 43 <p> 44 You agree not to use the Service to: 45 Violate any applicable laws or regulations. 46 Infringe upon the rights of others. 47 Upload, store, or share content that is illegal, harmful, threatening, abusive, harassing, defamatory, vulgar, obscene, or otherwise objectionable. 48 Engage in spam, phishing, or other deceptive practices. 49 Attempt to gain unauthorized access to the Service or other users' accounts. 50 Interfere with or disrupt the Service or servers connected to the Service. 51 </p> 52 53 <footer> 54 <p> 55 <a href="/">home</a> 56 </p> 57 {% include "_footerlinks.html" %} 58 </footer> 59 </div> 60 </body> 61</html>