CnJaFlashC-1 / templates /portal.html
OzoneAsai's picture
Update templates/portal.html
5ab705f verified
raw
history blame
996 Bytes
<!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('index', set='A', index=0) }}">Set A - Plastics</a></li>
<li><a href="{{ url_for('index', set='B', index=0) }}">Set B - Renewable Energy</a></li>
<li><a href="{{ url_for('index', set='C', index=0) }}">Set C - Report Writing</a></li>
<li><a href="{{ url_for('index', set='D', index=0) }}">Set D - Climate Change</a></li>
<li><a href="{{ url_for('index', set='F', index=0) }}">Set F - Coding Best Practices</a></li>
<li><a href="{{ url_for('index', set='G', index=0) }}">Set G - Science and Technology Education</a></li>
</ul>
</div>
</body>
</html>