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

Update templates/message.html

Browse files
Files changed (1) hide show
  1. templates/message.html +5 -10
templates/message.html CHANGED
@@ -1,23 +1,18 @@
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 %}
 
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 %}