Ruby/dashboard/templates/journal.html
Dani b876dede9e Added Dark mode,
Added a journal
Added concepts
2025-04-25 22:54:44 -04:00

31 lines
665 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ruby's Journal</title>
<style>
body {
background-color: #121212;
color: #e0e0e0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 20px;
}
h1 {
color: #ffffff;
}
.entry {
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #333;
}
</style>
</head>
<body>
<h1>📓 Ruby's Journal</h1>
{% for entry in entries %}
<div class="entry">{{ entry }}</div>
{% endfor %}
</body>
</html>