ayush2917 commited on
Commit
c2c8691
·
verified ·
1 Parent(s): 3a9bf57

Update templates/message.html

Browse files
Files changed (1) hide show
  1. templates/message.html +17 -14
templates/message.html CHANGED
@@ -1,20 +1,23 @@
1
  {% extends "base.html" %}
2
 
3
- {% block content %}
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
- <h2>Krishna’s Gift Ideas for You!</h2>
11
- <ul>
12
- {% for gift in gift_suggestions %}
13
- <li>{{ gift }}</li>
14
- {% endfor %}
15
- </ul>
16
 
17
- <img src="{{ birthday_image_url }}" alt="Little Krishna celebrating Manavi’s birthday" />
18
- </div>
 
 
 
 
 
 
 
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 %}