You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
2.0 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
  5. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
  6. <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
  7. <title> Juni Kim </title>
  8. </head>
  9. <style>
  10. p {
  11. font-size: 125%;
  12. }
  13. li {
  14. font-size: 125%;
  15. }
  16. </style>
  17. <body>
  18. <nav class="navbar navbar-expand-sm navbar-light bg-light">
  19. <div class="container-fluid">
  20. <div class="navbar-header">
  21. <a class="navbar-brand" href="{{ url_for('index') }}"> Juni Kim </a>
  22. </div>
  23. <ul class="nav navbar-nav">
  24. <li>
  25. <button class="btn btn-primary m-2">
  26. <a href="{{ url_for('achievements') }}" class="text-light">
  27. Achievements
  28. </a>
  29. </button>
  30. </li>
  31. <li>
  32. <button class="btn btn-primary m-2">
  33. <a href="{{ url_for('school') }}" class="text-light">
  34. School
  35. </a>
  36. </button>
  37. </li>
  38. <li>
  39. <button class="btn btn-primary m-2">
  40. <a href="{{ url_for('projects') }}" class="text-light">
  41. Projects
  42. </a>
  43. </button>
  44. </li>
  45. </ul>
  46. </div>
  47. </nav>
  48. {% block content %}
  49. {% endblock %}
  50. </body>
  51. </html>