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.

42 lines
1.5 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="icon" href="./favicon.ico" type="image/x-icon" />
  7. <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
  8. <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">
  9. <link rel="stylesheet" href="./style.css" />
  10. </head>
  11. <body>
  12. <div id="header-bar" class="d-flex flex-column flex-md-row shadow-sm align-items-center">
  13. <div id="header-title">
  14. <a href="./index.html">
  15. <img id="logo" class="text-center" src="./logo.svg" />
  16. </a>
  17. </div>
  18. <ul id="navigation" class="nav justify-content-end">
  19. <li class="nav-item">
  20. <a href="./GraphTest.html">
  21. Generate graphs
  22. </a>
  23. </li>
  24. <div class="nav-sep"></div>
  25. <li class="nav-item">
  26. <a href="https://github.com/jrtechs/github-graphs">
  27. View on GitHub
  28. </a>
  29. </li>
  30. <div class="nav-sep"></div>
  31. <li class="nav-item">
  32. <a href="./about.html">
  33. About
  34. </a>
  35. </li>
  36. </ul>
  37. </div>
  38. <div class="main">
  39. <div id="content" class="container">
  40. </div>
  41. </body>
  42. </html>