Spaces:
Sleeping
Sleeping
File size: 949 Bytes
18a92cd 536cc4d 18a92cd 536cc4d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flashcard Sets</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="sets">
<h1>Flashcard Sets</h1>
<ul>
<li><a href="{{ url_for('flashcards_page', set='A', index=0) }}">Set A - </a></li>
<li><a href="{{ url_for('flashcards_page', set='B', index=0) }}">Set B - </a></li>
<li><a href="{{ url_for('flashcards_page', set='C', index=0) }}">Set C - </a></li>
<li><a href="{{ url_for('flashcards_page', set='D', index=0) }}">Set D -</a></li>
<li><a href="{{ url_for('flashcards_page', set='F', index=0) }}">Set F - </a></li>
<li><a href="{{ url_for('flashcards_page', set='G', index=0) }}">Set G - </a></li>
</ul>
</div>
</body>
</html> |