Update templates/message.html
Browse files- templates/message.html +17 -14
templates/message.html
CHANGED
@@ -1,20 +1,23 @@
|
|
1 |
{% extends "base.html" %}
|
2 |
|
3 |
-
{% block
|
4 |
-
<div class="container">
|
5 |
-
<div class="message-container">
|
6 |
-
<h1>Happy Birthday, Manavi!</h1>
|
7 |
-
<p>Little Krishna has a special message for you!</p>
|
8 |
-
<p>{{ birthday_message }}</p>
|
9 |
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
<li>{{ gift }}</li>
|
14 |
-
{% endfor %}
|
15 |
-
</ul>
|
16 |
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</div>
|
|
|
|
|
|
|
|
|
20 |
{% endblock %}
|
|
|
1 |
{% extends "base.html" %}
|
2 |
|
3 |
+
{% block title %}Vrindavan Adventure{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
+
{% block styles %}
|
6 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='css/adventure.css') }}">
|
7 |
+
{% endblock %}
|
|
|
|
|
|
|
8 |
|
9 |
+
{% block content %}
|
10 |
+
<div class="container">
|
11 |
+
<div class="adventure-container">
|
12 |
+
<h1>Explore Vrindavan with Krishna!</h1>
|
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/adventure.js') }}"></script>
|
23 |
{% endblock %}
|