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

43 lines
963 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ruby's Concepts</title>
<style>
body {
background-color: #121212;
color: #e0e0e0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 20px;
}
h1 {
color: #ffffff;
}
.cluster {
margin-bottom: 30px;
}
.cluster h2 {
color: #f0f0f0;
}
ul {
list-style-type: square;
padding-left: 20px;
}
</style>
</head>
<body>
<h1>🧠 Ruby's Concept Clusters</h1>
{% for cluster_id, words in clusters.items() %}
<div class="cluster">
<h2>Concept {{ cluster_id }}</h2>
<ul>
{% for word in words %}
<li>{{ word }}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</body>
</html>