Fork of github.com/did-method-plc/did-method-plc
1{% extends "base.html" %} 2 3{% block head_title %}Error {{ statusCode }} - did:plc{% endblock %} 4 5{%- block main %} 6{% if statusCode == 404 %} 7 <h1>404: Not Found</h1> 8{% elif statusCode == 410 %} 9 <h1>410: Gone</h1> 10{% elif statusCode == 400 %} 11 <h1>400: Bad Request</h1> 12{% else %} 13 <h1>{{ statusCode }}: Server Error</h1> 14{% endif %} 15{% if errorMessage %} 16 <p>{{ errorMessage }} 17{% else %} 18 <p>Sorry about that! Our <a href="https://status.bsky.app/">Status Page</a> might have more context. 19{% endif %} 20{% endblock -%}