Spaces:
Runtime error
Runtime error
| <!-- templates/portal.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 - Plastics</a></li> | |
| <li><a href="{{ url_for('flashcards_page', set='B', index=0) }}">Set B - Renewable Energy</a></li> | |
| <li><a href="{{ url_for('flashcards_page', set='C', index=0) }}">Set C - Report Writing</a></li> | |
| <li><a href="{{ url_for('flashcards_page', set='D', index=0) }}">Set D - Climate Change</a></li> | |
| <li><a href="{{ url_for('flashcards_page', set='F', index=0) }}">Set F - Coding Best Practices</a></li> | |
| <li><a href="{{ url_for('flashcards_page', set='G', index=0) }}">Set G - Science and Technology Education</a></li> | |
| </ul> | |
| </div> | |
| </body> | |
| </html> |