Personal blog written from scratch using Node.js, Bootstrap, and MySQL. https://jrtechs.net
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.

94 lines
3.2 KiB

  1. {header}
  2. <style>
  3. .centered
  4. {
  5. position: absolute;
  6. top: 25%;
  7. left: 35%;
  8. transform: translate(-25%, -25%);
  9. }
  10. .centered .tagLine
  11. {
  12. font-size:2vw;
  13. font-weight: 200;
  14. }
  15. .banner
  16. {
  17. height: 50vh !important;
  18. width:100%;
  19. min-height: 350px;
  20. background: transparent;
  21. background: url("/includes/img/background_light.png") center center fixed;
  22. color: #fff;
  23. }
  24. .banner .name
  25. {
  26. font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  27. font-size:5vw;
  28. font-weight: 700;
  29. display: block;
  30. text-transform: uppercase;
  31. }
  32. </style>
  33. <div class="banner">
  34. <div class="centered name text-center">Jeffery's Blog<br>
  35. <span class="tagLine">
  36. Computer Science, Researcher, Open Source
  37. </span>
  38. </div>
  39. </div>
  40. <br><br>
  41. <div class="container">
  42. <div class="row">
  43. <div class="col-md-8 col-12">
  44. <div class="card">
  45. <div class="card-header">
  46. <h3>
  47. About Me
  48. </h3>
  49. </div>
  50. <div class="card-body">
  51. <p>
  52. I am currently a third year Computer Science student at Rochester Institute of Technology.
  53. I am a very outgoing person who loves collaborating and working with others.
  54. Check out my <a href="https://github.com/jrtechs">GitHub</a>, blog posts, and project websites to see what I have been working on.
  55. </p>
  56. <p>
  57. I am a self proclaimed geek; I have been programming since I salvaged parts to build a computer when I was in 6th grade.
  58. Computers are my lifeblood. When I am not programming - or reading - I enjoy excising and riding my bike.
  59. </p>
  60. </div>
  61. </div>
  62. <br><br>
  63. <div class="card">
  64. <div class="card-header">
  65. <h3>
  66. This Site
  67. </h3>
  68. </div>
  69. <div class="card-body">
  70. <p>
  71. JrTechs is a simple personal blog where I write articles on topics that I find interesting.
  72. This blog covers everything from project write-ups to tutorials on complex machine learning algorithms.
  73. </p>
  74. <p>
  75. This site was initially started as a simple HTML site back in 2014 when I was first learning about web development.
  76. This website has gone through <b>a lot</b> of changes since it was initially created in 2014.
  77. Currently the site is a custom <a href="https://expressjs.com/">Express</a> application which uses <a href="https://pandoc.org/">Pandoc</a> to render <a href="https://www.latex-project.org/">Latex</a>/Markdown files as HTML documents.
  78. </p>
  79. </div>
  80. </div>
  81. </div>
  82. <div class="col-md-4 col-12">
  83. {>sideBar}
  84. </div>
  85. </div>
  86. </div>
  87. {footer}