67 lines
1.6 KiB
HTML
67 lines
1.6 KiB
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;
|
|
}
|
|
.entry {
|
|
margin-bottom: 15px;
|
|
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>
|
|
</div>
|
|
|
|
<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>
|