index.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dynamic Cheatsheet Generator</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-5">
<h1>Dynamic Cheatsheet Generator</h1>
<a href="{{ url_for('create_cheatsheet') }}" class="btn btn-primary">Create New Cheatsheet</a>
<hr>
{% for title, content in cheatsheets.items() %}
<div class="card mb-3">
<div class="card-body">
<h5 class="card-title">{{ title }}</h5>
<p class="card-text">{{ content }}</p>
</div>
</div>
{% endfor %}
</div>
</body>
</html>