Create home.html
Browse files- templates/home.html +8 -0
templates/home.html
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{% extends 'base.html' %}
|
2 |
+
{% block content %}
|
3 |
+
<h1>Hare Manavi! Welcome to Little Krishna’s World!</h1>
|
4 |
+
<p>A birthday surprise awaits you on April 19, 2025!</p>
|
5 |
+
<div id="countdown"></div>
|
6 |
+
<lottie-player src="/static/assets/krishna-lottie.json" background="transparent" speed="1" style="width: 300px; height: 300px;" loop autoplay></lottie-player>
|
7 |
+
<script src="/static/js/countdown.js"></script>
|
8 |
+
{% endblock %}
|