expired.ejs
550 bytes
| 1 | <%- include("partials/head", { title: reason === "revoked" ? "Link revoked" : "Link expired", bodyClass: "state-page" }) %> |
|---|---|
| 2 | <main class="state-shell"> |
| 3 | <p class="state-code">410</p> |
| 4 | <% if (reason === "revoked") { %> |
| 5 | <h1>The owner revoked this snapshot link.</h1> |
| 6 | <p>Its stored repository content is no longer available.</p> |
| 7 | <% } else { %> |
| 8 | <h1>The URL you have opened is expired.</h1> |
| 9 | <p>The owner set a time limit for this snapshot, and its contents are no longer available.</p> |
| 10 | <% } %> |
| 11 | </main> |
| 12 | <%- include("partials/foot") %> |
| 13 | |