diff options
author | braxtonhall | 2022-10-24 04:22:13 +0000 |
---|---|---|
committer | braxtonhall | 2022-10-24 04:22:13 +0000 |
commit | 01f4656a8c394ab1016ef303a72a53d3de3c16f1 (patch) | |
tree | d5c09073a33bea9de34ca51f8aac58a56f8d6de7 /index.html | |
parent | 21d4b1499fbbb5dc6f2c91c7a2e525d0c7a1a599 (diff) |
Update HTML
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -30,6 +30,7 @@ } #contributors-container { margin-top: 3em; + margin-bottom: 3em; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> @@ -44,8 +45,10 @@ <h3>Contributors</h3> <div id="contributors"></div> </div> + + <a href="https://github.com/braxtonhall/fib#contributing"><span>Want to contribute?</span></a> <script> - const getContributors = _ => fetch(`${window.location.href}/people.json`).then(res => res.json()); + const getContributors = _ => fetch(`/fib/people.json`).then(res => res.json()); const toPersonNode = person => $("<div>", {class: "person"}).append( toPersonHeader(person), @@ -55,7 +58,7 @@ const toPersonImage = github => github ? $("<img>", {class: "person-pic", src: `https://github.com/${github}.png`, alt: github}) : $("<div>", {class: "person-pic"}); - + const toPersonDetails = person => $("<div>").append( |