BirthdayM / templates /base.html
ayush2917's picture
Update templates/base.html
0cfbedb verified
raw
history blame contribute delete
659 Bytes
<!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>