18 lines
387 B
HTML
18 lines
387 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ruby's Dashboard</title>
|
|
</head>
|
|
<body>
|
|
<h1>Ruby is running</h1>
|
|
<p><strong>Vocabulary Size:</strong> {{ vocab_size }}</p>
|
|
|
|
<h2>🏆 Highest Scoring Dreams</h2>
|
|
<ul>
|
|
{% for dream in top_dreams %}
|
|
<li><strong>{{ dream.score }}</strong> | {{ dream.sentence }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|