Update templates/message.html
Browse files- templates/message.html +16 -14
templates/message.html
CHANGED
@@ -1,18 +1,20 @@
|
|
1 |
-
{% extends
|
|
|
2 |
{% block content %}
|
|
|
|
|
3 |
<h1>Happy Birthday, Manavi!</h1>
|
4 |
<p>Little Krishna has a special message for you!</p>
|
5 |
-
<
|
6 |
-
|
7 |
-
|
8 |
-
<
|
9 |
-
|
10 |
-
<
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
<lottie-player src="/static/assets/krishna-lottie.json" background="transparent" speed="1" style="width: 300px; height: 300px; margin: 0 auto;" loop autoplay></lottie-player>
|
18 |
{% endblock %}
|
|
|
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 %}
|