File size: 659 Bytes
4a19de9 0cfbedb 4a19de9 0cfbedb 4a19de9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{% endblock %} - Little Krishna Chatbot</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/base.css') }}">
{% block styles %}
{% endblock %}
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/chat">Chat with Krishna</a>
<a href="/adventure">Vrindavan Adventure</a>
<a href="/message">Birthday Message</a>
</nav>
{% block content %}
{% endblock %}
{% block scripts %}
{% endblock %}
</body>
</html> |