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.

75 lines
3.7 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. <title>Home - GitHub Graphs</title>
  7. <link rel="icon" href="./favicon.ico" type="image/x-icon" />
  8. <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
  9. <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">
  10. <link rel="stylesheet" href="./style.css" />
  11. <script src="https://code.jquery.com/jquery-3.3.1.min.js"
  12. integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
  13. crossorigin="anonymous">
  14. </script>
  15. <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
  16. integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
  17. crossorigin="anonymous">
  18. </script>
  19. </head>
  20. <body class="home-page">
  21. <nav class="navbar navbar-dark bg-dark navbar-expand-md">
  22. <a class="navbar-brand" href="/"><img src="img/githubgraph-logo.svg" alt=""></a>
  23. <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#main-menu" aria-controls="main-menu" aria-expanded="false" aria-label="Toggle navigation">
  24. <span class="navbar-toggler-icon"></span>
  25. </button>
  26. <div id="main-menu" class="collapse navbar-collapse">
  27. <ul class="navbar-nav flex-fill justify-content-end">
  28. <li class="nav-item">
  29. <a class="nav-link" href="./GraphGenerator.html">Generate graphs</a>
  30. </li>
  31. <li class="nav-item">
  32. <a class="nav-link" href="https://github.com/jrtechs/github-graphs/">View on GitHub</a>
  33. </li>
  34. <li class="nav-item">
  35. <a class="nav-link" href="./about.html">About</a>
  36. </li>
  37. </ul>
  38. </div>
  39. </nav>
  40. <div class="main text-white">
  41. <div class="container">
  42. <div class="row align-items-center">
  43. <div class="col-lg-6">
  44. <div class="py-5">
  45. <h1 class="mb-3 font-weight-bold">What can I do here?</h1>
  46. <p>
  47. Head over to the 'Generate graphs' page and enter
  48. the username of a GitHub user. You can then select
  49. what kind of graph to generate based on that user.
  50. </p>
  51. <p>
  52. If you'd like to see how everything works, follow
  53. the link to GitHub, where you can view everything
  54. that went into making this functional.
  55. </p>
  56. <p>
  57. If you're interested in knowing more about this
  58. project, additional information can be found on
  59. the About page.
  60. </p>
  61. </div>
  62. <div class="py-5">
  63. <a href="./GraphGenerator.html" class="btn btn-lg btn-primary mr-2">Make a graph</a>
  64. <a href="https://github.com/jrtechs/github-graphs/" target="_blank" class="btn btn-lg btn-secondary">View on Github</a>
  65. </div>
  66. </div>
  67. <div class="col-lg-6">
  68. <img src="img/home-image.png" alt="" class="img-fluid d-lg-none">
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. </body>
  74. </html>