A decentralized event management and credentialing system built on atproto.
at main 39 lines 1.3 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("Acudo") }}{% endblock %}</title> 7 <meta name="description" 8 content="{% block description %}Event RSVP management for the AT Protocol community{% endblock %}"> 9 <link rel="stylesheet" href="/static/pico.css"> 10 <link rel="stylesheet" href="/static/pico.colors.css"> 11 {% if canonical_url %}<link rel="canonical" href="{{ canonical_url }}">{% endif %} 12 {% block head %}{% endblock %} 13</head> 14<body> 15 <header> 16 <nav> 17 <ul> 18 <li><strong>Acudo</strong></li> 19 </ul> 20 <ul> 21 <li><a href="/">Home</a></li> 22 {% if identity %} 23 <li><a href="/tickets">My Tickets</a></li> 24 {% else %} 25 {% endif %} 26 </ul> 27 </nav> 28 </header> 29 <main> 30 {% block content %}{% endblock %} 31 </main> 32 <footer> 33 <p> 34 Powered by <a href="https://github.com/tangled/acudo">Acudo</a> - 35 Event RSVP management for the <a href="https://atproto.com">AT Protocol</a> community 36 </p> 37 </footer> 38</body> 39</html>