39 lines
751 B
HTML
39 lines
751 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>JADE 2.0</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
{% include "partials/navbar.html" %}
|
|
|
|
{{embed}}
|
|
|
|
<script src="https://unpkg.com/htmx.org@1.9.11"></script>
|
|
<style>
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.message {
|
|
max-width: 90%;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.user-message {
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.bot-message {
|
|
align-self: flex-end;
|
|
}
|
|
</style>
|
|
|
|
</body>
|
|
|
|
</html> |