summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/sorry.html
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-10-25 17:34:43 -0400
committerrsiddharth <s@ricketyspace.net>2019-10-25 17:34:43 -0400
commit17b715179dd0231d7ae874a0abefe554b67df64b (patch)
treedd24dff503da6ccb3a549c0eeefff00180cebd68 /nfsw/templates/sorry.html
parentac7c3863187585a8c98881458fffda19135c4e54 (diff)
nfsw: Style sorry page.
Diffstat (limited to 'nfsw/templates/sorry.html')
-rw-r--r--nfsw/templates/sorry.html20
1 files changed, 14 insertions, 6 deletions
diff --git a/nfsw/templates/sorry.html b/nfsw/templates/sorry.html
index d374649..d6bb646 100644
--- a/nfsw/templates/sorry.html
+++ b/nfsw/templates/sorry.html
@@ -3,13 +3,21 @@
{% block title %}Sorry{% endblock %}
{% block content %}
-<article class="sorry-block">
- <header>
- <h1>Sorry</h1>
- </header>
+<div class="sorry-grid">
+ <div class="sorry-grid-item">
+ <div class="sorry-block">
+ <header>
+ <h1>Sorry</h1>
+ </header>
- <p>Alas! sad that you're unable to play.</p>
+ <p>Alas! sad that you're unable to play.</p>
- <p>XOXO.</p>
+ <p>XOXO.</p>
+ </div>
+ </div>
</div>
{% endblock %}
+
+{% block css %}
+<link rel="stylesheet" href="{{ url_for('static', filename='sorry.css') }}">
+{% endblock %}