<%~ include('./partials/head', { title: 'Status pages' }) %> <%~ include('./partials/nav', { nav: 'status-pages' }) %>

Status pages

+ New page

Public pages people can visit during an outage. Each page picks a slug, the monitors to display, and optional branding.

<% if (!it.pages || it.pages.length === 0) { %>
No status pages yet. Create one to get a public URL like status.pingql.com/your-slug.
<% } else { %> <% it.pages.forEach(function(p) { %>

<%= p.title %>

<%= p.theme %>
<% if (p.custom_domain) { %> <%= p.custom_domain %> <% } else { %> status.pingql.com/<%= p.slug %> <% } %> <% if (p.description) { %>

<%= p.description %>

<% } %>
Edit
<% }) %> <% } %>