Ruby/dashboard/templates/dreams.html
2025-04-27 18:57:30 -04:00

57 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ruby's Dream Stream</title>
<meta http-equiv="refresh" content="10">
<style>
body {
background-color: #121212;
color: #e0e0e0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 20px;
}
h1 {
color: #ffffff;
}
.dream {
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #333;
}
.nav {
background-color: #1e1e1e;
padding: 10px;
margin-bottom: 20px;
}
.nav a {
color: #e0e0e0;
margin-right: 20px;
text-decoration: none;
}
</style>
</head>
<body>
<div class="nav">
<a href="/">🏠 Home</a>
<a href="/journal">📓 Journal</a>
<a href="/concepts">🧠 Concepts</a>
<a href="/brainmap">🕸️ Brain Map</a>
<a href="/growth">📈 Growth</a>
<a href="/dreams">💬 Dreams</a>
<a href="/health">❤️ Health</a>
</div>
<h1>💬 Ruby's Dream Stream</h1>
{% for dream in dreams %}
<div class="dream">
<strong>Score:</strong> {{ dream.score }}<br>
{{ dream.sentence }}
</div>
{% endfor %}
</body>
</html>