Adds Discord redirect, fallback page (#402)

This commit is contained in:
Mark Cohen
2021-04-30 13:57:10 -07:00
committed by GitHub
parent 5887bb0e6c
commit a46a0cf029
3 changed files with 19 additions and 1 deletions

12
11ty/discord/index.njk Normal file
View File

@ -0,0 +1,12 @@
{% extends 'layouts/base.njk' %}
{% set pageType = 'Page' %}
{% set titleWithPath = 'Invitations Closed « ' %}
{% block content %}
<div class="article-content">
{% include 'components/sub-page-header.njk' %}
<main class="page">
<h1>Discord Invitations</h1>
<p>Invitations to the Discord server are currently closed. Please keep an eye on our <a href="https://twitter.com/SelfDefinedApp">Twitter account</a> for updates!</p>
</main>
</div>
{% endblock %}