BYOK Personal Data Server (PDS) written in Go
ipfs vow atproto pds go
0
fork

Configure Feed

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

feat: add favicon

+15
+10
server/static/favicon.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"> 2 + <defs> 3 + <linearGradient id="vow-gradient" x1="0%" y1="0%" x2="100%" y2="100%"> 4 + <stop offset="0%" style="stop-color:#3b82f6"/> 5 + <stop offset="100%" style="stop-color:#1d4ed8"/> 6 + </linearGradient> 7 + </defs> 8 + <rect width="32" height="32" rx="6" fill="url(#vow-gradient)"/> 9 + <path d="M8 10 L16 24 L24 10" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"/> 10 + </svg>
+1
server/templates/account.html
··· 6 6 <meta name="color-scheme" content="light dark" /> 7 7 <link rel="stylesheet" href="/static/pico.css" /> 8 8 <link rel="stylesheet" href="/static/style.css" /> 9 + <link rel="icon" type="image/svg+xml" href="/static/favicon.svg" /> 9 10 <title>Your Account</title> 10 11 </head> 11 12 <body class="margin-top-md">
+1
server/templates/authorize.html
··· 6 6 <meta name="color-scheme" content="light dark" /> 7 7 <link rel="stylesheet" href="/static/pico.css" /> 8 8 <link rel="stylesheet" href="/static/style.css" /> 9 + <link rel="icon" type="image/svg+xml" href="/static/favicon.svg" /> 9 10 <title>Application Authorization</title> 10 11 </head> 11 12 <body class="centered-body">
+1
server/templates/home.html
··· 6 6 <meta name="color-scheme" content="light dark" /> 7 7 <link rel="stylesheet" href="/static/pico.css" /> 8 8 <link rel="stylesheet" href="/static/style.css" /> 9 + <link rel="icon" type="image/svg+xml" href="/static/favicon.svg" /> 9 10 <title>{{ .Hostname }} — AT Protocol PDS</title> 10 11 <style> 11 12 .home-container {
+1
server/templates/signin.html
··· 6 6 <meta name="color-scheme" content="light dark" /> 7 7 <link rel="stylesheet" href="/static/pico.css" /> 8 8 <link rel="stylesheet" href="/static/style.css" /> 9 + <link rel="icon" type="image/svg+xml" href="/static/favicon.svg" /> 9 10 <title>PDS Authentication</title> 10 11 </head> 11 12 <body class="centered-body">
+1
server/templates/signup.html
··· 6 6 <meta name="color-scheme" content="light dark" /> 7 7 <link rel="stylesheet" href="/static/pico.css" /> 8 8 <link rel="stylesheet" href="/static/style.css" /> 9 + <link rel="icon" type="image/svg+xml" href="/static/favicon.svg" /> 9 10 <title>Create Account</title> 10 11 </head> 11 12 <body class="centered-body">