OzoneAsai commited on
Commit
7365b85
·
verified ·
1 Parent(s): a2618a8

Update templates/portal.html

Browse files
Files changed (1) hide show
  1. templates/portal.html +8 -7
templates/portal.html CHANGED
@@ -1,3 +1,4 @@
 
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
@@ -10,13 +11,13 @@
10
  <div class="sets">
11
  <h1>Flashcard Sets</h1>
12
  <ul>
13
- <li><a href="{{ url_for('index', set='A', index=0) }}">Set A - Plastics</a></li>
14
- <li><a href="{{ url_for('index', set='B', index=0) }}">Set B - Renewable Energy</a></li>
15
- <li><a href="{{ url_for('index', set='C', index=0) }}">Set C - Report Writing</a></li>
16
- <li><a href="{{ url_for('index', set='D', index=0) }}">Set D - Climate Change</a></li>
17
- <li><a href="{{ url_for('index', set='F', index=0) }}">Set F - Coding Best Practices</a></li>
18
- <li><a href="{{ url_for('index', set='G', index=0) }}">Set G - Science and Technology Education</a></li>
19
  </ul>
20
  </div>
21
  </body>
22
- </html>
 
1
+ <!-- templates/portal.html -->
2
  <!DOCTYPE html>
3
  <html lang="en">
4
  <head>
 
11
  <div class="sets">
12
  <h1>Flashcard Sets</h1>
13
  <ul>
14
+ <li><a href="{{ url_for('flashcards_page', set='A', index=0) }}">Set A - Plastics</a></li>
15
+ <li><a href="{{ url_for('flashcards_page', set='B', index=0) }}">Set B - Renewable Energy</a></li>
16
+ <li><a href="{{ url_for('flashcards_page', set='C', index=0) }}">Set C - Report Writing</a></li>
17
+ <li><a href="{{ url_for('flashcards_page', set='D', index=0) }}">Set D - Climate Change</a></li>
18
+ <li><a href="{{ url_for('flashcards_page', set='F', index=0) }}">Set F - Coding Best Practices</a></li>
19
+ <li><a href="{{ url_for('flashcards_page', set='G', index=0) }}">Set G - Science and Technology Education</a></li>
20
  </ul>
21
  </div>
22
  </body>
23
+ </html>