decentralized crowd-sourced service status tracker on ATProto
at main 679 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"> 6 <title>atstatus.net</title> 7 <link rel="stylesheet" href="/stylesheets/style.css"> 8</head> 9<body> 10<header class="header"> 11 <div class="container"> 12 <a href="/" class="status">@status</a> 13 <% if (session && session.handle) { %> 14 <span style="opacity:0.8;">@<%= session.handle %></span> 15 <a href="/logout" class="login-btn">Logout</a> 16 <% } else { %> 17 <a href="/login" class="login-btn">Login</a> 18 <% } %> 19 </div> 20</header> 21<main class="main"> 22 <div class="container"> 23 <%- body %> 24 </div> 25</main> 26</body> 27</html>