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.

89 lines
3.4 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 a self-proclaimed geek; I have been programming since I salvaged parts to build a computer when I was in 6th grade. Computers are my lifeblood; when I am not building software, I enjoy photography, running, reading, and cooking.
  53. </p>
  54. <p>
  55. I am a fifth-year Computer Science student at the Rochester Institute of Technology. Check out my <a href="https://github.com/jrtechs">GitHub</a>, blog posts, and project websites to see what software and I've been cooking up. My current interests are in graph data, web scraping, machine learning, computer vision, and open-source software.
  56. </p>
  57. </div>
  58. </div>
  59. <br><br>
  60. <div class="card">
  61. <div class="card-header">
  62. <h3>
  63. This Site
  64. </h3>
  65. </div>
  66. <div class="card-body">
  67. <p>
  68. JRTechs is a personal blog where I write about everything from projects to tutorials on sophisticated machine learning algorithms. If you want to stay up to date with new posts, subscribe to my <a href="https://jrtechs.net/rss">RSS feed</a>.
  69. </p>
  70. <p>
  71. This site initially started as a static HTML site in 2014 when I was first learning the ropes of web development. Since then, this site has undergone massive changes as I expanded my web development skills.
  72. 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> and Markdown files as HTML documents. This site has its very own admin portal to manage posts and has even expanded to include: customizable downloads, photography galleries, nested static websites, and static content for miscellaneous events.
  73. </p>
  74. </div>
  75. </div>
  76. </div>
  77. <div class="col-md-4 col-12">
  78. {>sideBar}
  79. </div>
  80. </div>
  81. </div>
  82. {footer}