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.

52 lines
2.1 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="container-fluid">
  4. <div class="row">
  5. <h3> Greetings, Human. </h3> <br>
  6. <h1> This is Juni Kim's Personal Website/Server for hosting things. </h1>
  7. </div>
  8. <br><br>
  9. <div class="row">
  10. <h2> About Me </h2>
  11. <p>
  12. My first true experience with programming was when I learned about
  13. the USACO as an eighth grader. After understanding the basics of
  14. using C++ (which is the primary language used in competitive
  15. programming contests due to its relative speed), I sought
  16. to understand the ins and outs of other fields of programming, from
  17. which I stumbled upon web development and scripting.
  18. <br><br>
  19. Currently, I write and post scripts in python or bash (mostly for
  20. automating boilerplate in certain tasks) and spend a vast amount
  21. of my time consuming and learning the annals of web development.
  22. </p>
  23. </div>
  24. <div class="row">
  25. <h2> Non-Programming </h2>
  26. <p>
  27. Outside of programming, I have trained and still participate
  28. extensively in the math competition world (which actually led me to
  29. start competitive programming), and regularly practice
  30. fencing, and to a lesser extent, boxing.
  31. </p>
  32. </div>
  33. <div class="row">
  34. <h2> Contact </h2> <br>
  35. <a href="https://junikimm717@gmail.com"> Email </a>
  36. <a href="https://github.com/junikimm717" target="new"> Github </a>
  37. <a href="https://gitlab.com/junikimm717" target="new"> GitLab </a>
  38. <a href="https://git.junickim.me/junikimm717" target="new"> My Self-Hosted Gitea Instance </a>
  39. </div>
  40. <br><br>
  41. <div class="row">
  42. <p class="text-muted">
  43. This website was written with
  44. <a href="https://palletsprojects.com/p/flask"/> Flask </a>
  45. and
  46. <a href="https://getbootstrap.com/"> Bootstrap CSS</a>.
  47. <a href="https://git.junickim.me/junikimm717/personal-website"> See the Source Code.</a>
  48. </p>
  49. </div>
  50. </div>
  51. {% endblock %}