tiny 88x31 lexicon for atproto
at main 31 lines 719 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>{{ .Title }}</title> 7 <style> 8 .special { 9 background: linear-gradient(88deg, #f00, #ff0, #0f0, #0ff, #00f, #f0f); 10 } 11 </style> 12 </head> 13 <body> 14 <h1> 15 Welcome to the <a href="/">88x31.store</a> 16 </h1> 17 <h2> 18 todays special~ <span class="special">EVERYTHING IS FREE</span> 19 </h2> 20 <header> 21 {{if .DID}} 22 hi {{.DID}}!<a href="/logout">logout</a> 23 {{else}} 24 <a href="/login">login with oauth</a> 25 {{end}} 26 </header> 27 <main> 28 {{template "content" .}} 29 </main> 30 </body> 31</html>