Update templates/message.html
Browse files- templates/message.html +5 -10
templates/message.html
CHANGED
@@ -1,23 +1,18 @@
|
|
1 |
{% extends "base.html" %}
|
2 |
|
3 |
-
{% block title %}
|
4 |
|
5 |
{% block styles %}
|
6 |
-
<link rel="stylesheet" href="{{ url_for('static', filename='css/
|
7 |
{% endblock %}
|
8 |
|
9 |
{% block content %}
|
10 |
<div class="container">
|
11 |
-
<
|
12 |
-
|
13 |
-
<div id="adventure-scene" class="adventure-scene">
|
14 |
-
<p>Loading your Vrindavan adventure...</p>
|
15 |
-
</div>
|
16 |
-
<div id="adventure-choices" class="adventure-choices"></div>
|
17 |
-
</div>
|
18 |
</div>
|
19 |
{% endblock %}
|
20 |
|
21 |
{% block scripts %}
|
22 |
-
<script src="{{ url_for('static', filename='js/
|
23 |
{% endblock %}
|
|
|
1 |
{% extends "base.html" %}
|
2 |
|
3 |
+
{% block title %}Birthday Message{% endblock %}
|
4 |
|
5 |
{% block styles %}
|
6 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='css/message.css') }}">
|
7 |
{% endblock %}
|
8 |
|
9 |
{% block content %}
|
10 |
<div class="container">
|
11 |
+
<h1>Happy Birthday, Manavi!</h1>
|
12 |
+
<p>Birthday message functionality to be implemented.</p>
|
|
|
|
|
|
|
|
|
|
|
13 |
</div>
|
14 |
{% endblock %}
|
15 |
|
16 |
{% block scripts %}
|
17 |
+
<script src="{{ url_for('static', filename='js/message.js') }}"></script>
|
18 |
{% endblock %}
|