A Rust application to showcase badge awards in the AT Protocol ecosystem.
at main 1.2 kB view raw
1<!DOCTYPE html> 2<html lang="en" data-theme="auto"> 3<head> 4 <meta charset="utf-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <title>{% block title %}{{ title | default("Showcase") }}{% endblock %}</title> 7 <meta name="description" 8 content="{% block description %}Badge awards showcase for the AT Protocol community{% endblock %}"> 9 <link rel="stylesheet" href="/static/pico.css"> 10 <link rel="stylesheet" href="/static/pico.colors.css"> 11</head> 12<body> 13 <header> 14 <nav> 15 <ul> 16 <li><strong>Showcase</strong></li> 17 </ul> 18 <ul> 19 <li><a href="/">Home</a></li> 20 <li><a href="https://preview.smokesignal.events/">Smoke Signal</a></li> 21 </ul> 22 </nav> 23 </header> 24 <main> 25 {% block content %}{% endblock %} 26 </main> 27 <footer> 28 <p> 29 Powered by <a href="https://tangled.sh/@smokesignal.events/showcase">Showcase</a> - 30 Part of <a href="https://bsky.app/profile/smokesignal.events">@smokesignal.events</a> - 31 A badge showcases for the <a href="https://atproto.com">AT Protocol</a> community 32 </p> 33 </footer> 34</body> 35</html>