Website for visualizing a persons github network.
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.

57 lines
2.2 KiB

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  7. <link rel="stylesheet" href="./style.css" />
  8. <link rel="stylesheet" href="./about.css" />
  9. </head>
  10. <body>
  11. <div id="header-bar" class="d-flex flex-column flex-md-row shadow-sm align-items-center">
  12. <div id="header-title">
  13. <a href="./index.html">
  14. <img id="logo" src="./logo.svg" />
  15. </a>
  16. </div>
  17. <ul id="navigation" class="nav justify-content-end">
  18. <li class="nav-item">
  19. <a href="./generate">
  20. Generate graphs
  21. </a>
  22. </li>
  23. <div class="nav-sep"></div>
  24. <li class="nav-item">
  25. <a href="https://github.com/jrtechs/github-graphs">
  26. View on GitHub
  27. </a>
  28. </li>
  29. <div class="nav-sep"></div>
  30. <li class="nav-item">
  31. <a href="./about.html">
  32. About
  33. </a>
  34. </li>
  35. </ul>
  36. </div>
  37. <div id="main">
  38. <div id="content" class="container">
  39. <div id="content-title">
  40. <h1 class="big-title text-center">What is this?</h1>
  41. </div>
  42. <div id="content-body" class="container">
  43. <p style="padding: 10px;">
  44. jeff this is where you can write a bunch about the project
  45. </p>
  46. </div>
  47. <div id="content-title">
  48. <h1 class="big-title text-center">Why did you make this?</h1>
  49. </div>
  50. <div id="content-body" class="container">
  51. <p style="padding: 10px;">
  52. This project was made for participation in <a class="plink" href="https://brickhack.io/">BrickHack V</a>.
  53. </p>
  54. </div>
  55. </div>
  56. </div>
  57. </body>
  58. </html>