this repo has no description
13
fork

Configure Feed

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

at netclient 44 lines 1.5 kB view raw
1<!doctype html> 2<html lang="en"> 3<head> 4 <meta charset="utf-8"> 5 <meta name="referrer" content="origin-when-cross-origin"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 <meta name="color-scheme" content="light dark" /> 8 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.green.min.css" /> 9 <style> 10 :root { 11 --pico-card-sectioning-background-color: #b7c9b7 !important; 12 } 13 html { position: relative; min-height: 100%; height: auto; } 14 body { margin-bottom: 3em; } 15 body > nav { background-color: var(--pico-muted-border-color); } 16 body > footer { position: absolute; bottom: 0px; padding: 2em; background-color: var(--pico-muted-border-color); } 17 thead th { font-weight: bold; } 18 main article { margin: 2.5rem 0; } 19 code { background: none; } 20 td { padding: 0; } 21 </style> 22 <meta name="generator" name="lexidex"> 23 <title>{% block head_title %}lexidex{% endblock %}</title> 24</head> 25<body> 26<nav class="container-fluid"> 27 <ul> 28 <li><a href="/"><strong>lexidex</strong></a></li> 29 </ul> 30 <form action="/query" method="get" style="width: 80%;"> 31 <input type="text" name="q" placeholder="Lookup by NSID..." {% if uri %}value="{{ uri }}"{% endif %} style="margin: 0.5em;"> 32 </form> 33 <ul> 34 <li><a href="https://atproto.com/specs/lexicon">Specs</a></li> 35 <li><a href="https://github.com/bluesky-social/indigo">Code</a></li> 36 </ul> 37</nav> 38 39<main class="container"> 40 {% block main_content %}Base Template{% endblock %} 41</main> 42 43</body> 44</html>