decentralized and customizable links page on top of atproto ligo.at
atproto link-in-bio python uv
9
fork

Configure Feed

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

update font and some copies

+28 -28
src/static/InterVariable.woff2

This is a binary file and will not be displayed.

src/static/WorkSansItalicVariable.ttf

This is a binary file and will not be displayed.

src/static/WorkSansVariable.ttf

This is a binary file and will not be displayed.

-7
src/static/inter.css
··· 1 - @font-face { 2 - font-family: "Inter"; 3 - font-style: normal; 4 - font-weight: 100 900; 5 - font-display: swap; 6 - src: url(/static/InterVariable.woff2); 7 - }
+1 -6
src/static/profile/default.css
··· 16 16 background: var(--color-background); 17 17 color: var(--color-text); 18 18 font-size: 18px; 19 - font-family: "Inter", system-ui, sans-serif, ui-sans-serif; 20 - font-feature-settings: 21 - "kern" 1, 22 - "liga" 1, 23 - "cv05" 1, 24 - "tnum" 1; 19 + font-family: "Work Sans", system-ui, sans-serif, ui-sans-serif; 25 20 font-optical-sizing: auto; 26 21 font-variation-settings: normal; 27 22 font-weight: 400;
-1
src/static/style.css
··· 72 72 button, 73 73 input[type="submit"] { 74 74 font-weight: 600; 75 - cursor: pointer; 76 75 padding: 0.25em; 77 76 } 78 77
+15
src/static/worksans.css
··· 1 + @font-face { 2 + font-family: "Work Sans"; 3 + font-style: italic; 4 + font-weight: 100 900; 5 + font-display: swap; 6 + src: url(/static/WorkSansItalicVariable.ttf); 7 + } 8 + 9 + @font-face { 10 + font-family: "Work Sans"; 11 + font-style: normal; 12 + font-weight: 100 900; 13 + font-display: swap; 14 + src: url(/static/WorkSansVariable.ttf); 15 + }
+5 -3
src/templates/editor.html
··· 4 4 <meta charset="utf-8" /> 5 5 <title>edit your profile &mdash; ligo.at</title> 6 6 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> 7 - <link rel="stylesheet" href="{{ url_for('static', filename='inter.css') }}" /> 7 + <link rel="stylesheet" href="{{ url_for('static', filename='worksans.css') }}" /> 8 8 <link rel="stylesheet" href="{{ url_for('static', filename='profile/default.css') }}" /> 9 9 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" /> 10 10 <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16.png') }}" /> ··· 29 29 30 30 <still-building> 31 31 <span class="title">alpha software</span> 32 - <p>ligo.at it still under development, and schemas keep changing: things might break anytime.</p> 33 - <p>You can track it's development or contribute <a href="https://tangled.org/@ligo.at/core">source code</a>.</p> 32 + <p> 33 + ligo.at it still under development. 34 + You can track it's development or contribute <a href="https://tangled.org/@ligo.at/core">source code</a>. 35 + </p> 34 36 </still-building> 35 37 36 38 <h2>profile</h2>
+1 -1
src/templates/error.html
··· 4 4 <meta charset="utf-8" /> 5 5 <title>oops! &mdash; ligo.at</title> 6 6 <meta name="viewport" content="width=device-width, initial-scale=1" /> 7 - <link rel="stylesheet" href="{{ url_for('static', filename='inter.css') }}" /> 7 + <link rel="stylesheet" href="{{ url_for('static', filename='worksans.css') }}" /> 8 8 <link rel="stylesheet" href="{{ url_for('static', filename='profile/default.css') }}" /> 9 9 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" /> 10 10 <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16.png') }}" />
+2 -6
src/templates/index.html
··· 4 4 <meta charset="utf-8" /> 5 5 <title>ligo.at: decentralized links page</title> 6 6 <meta name="viewport" content="width=device-width, initial-scale=1" /> 7 - <link rel="stylesheet" href="{{ url_for('static', filename='inter.css') }}" /> 7 + <link rel="stylesheet" href="{{ url_for('static', filename='worksans.css') }}" /> 8 8 <link rel="stylesheet" href="{{ url_for('static', filename='profile/default.css') }}" /> 9 9 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" /> 10 10 <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16.png') }}" /> ··· 26 26 <a href="https://atproto.com/">AT Protocol</a>. 27 27 </p> 28 28 <p> 29 - ligo.at is still in active development. Schemas and lexicons may change at any time. 30 - If you want to give it a try: 31 - </p> 32 - <p> 33 29 <a href="{{ url_for('page_login') }}">login</a> 34 30 </p> 35 31 <footer> 36 32 {% include "_footerlinks.html" %} 37 33 <p> 38 - Made by <a href="/@nauta.one">@nauta.one</a><br /> 34 + created by <a href="/@nauta.one">@nauta.one</a> 39 35 </p> 40 36 </footer> 41 37 </div>
+1 -1
src/templates/login.html
··· 4 4 <meta charset="utf-8" /> 5 5 <title>login &mdash; ligo.at</title> 6 6 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> 7 - <link rel="stylesheet" href="{{ url_for('static', filename='inter.css') }}" /> 7 + <link rel="stylesheet" href="{{ url_for('static', filename='worksans.css') }}" /> 8 8 <link rel="stylesheet" href="{{ url_for('static', filename='profile/default.css') }}" /> 9 9 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" /> 10 10 <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16.png') }}" />
+2 -2
src/templates/profile.html
··· 17 17 <meta property="profile:username" content="{{ profile.handle }}" /> 18 18 {% endif %} 19 19 {% if athref %}<link rel="alternate" href="{{ athref }}" />{% endif %} 20 + <base target="_blank" /> 20 21 <!-- styles and favicons --> 21 22 <meta name="viewport" content="width=device-width, initial-scale=1" /> 22 - <base target="_blank" /> 23 - <link rel="stylesheet" href="{{ url_for('static', filename='inter.css') }}" /> 23 + <link rel="stylesheet" href="{{ url_for('static', filename='worksans.css') }}" /> 24 24 <link rel="stylesheet" href="{{ url_for('static', filename='profile/default.css') }}" /> 25 25 <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16.png') }}" /> 26 26 <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon-32.png') }}" />
+1 -1
src/templates/terms.html
··· 4 4 <meta charset="utf-8" /> 5 5 <title>terms of service &mdash; ligo.at</title> 6 6 <meta name="viewport" content="width=device-width, initial-scale=1" /> 7 - <link rel="stylesheet" href="{{ url_for('static', filename='inter.css') }}" /> 7 + <link rel="stylesheet" href="{{ url_for('static', filename='worksans.css') }}" /> 8 8 <link rel="stylesheet" href="{{ url_for('static', filename='profile/default.css') }}" /> 9 9 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" /> 10 10 <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16.png') }}" />