aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbraxtonhall2022-10-24 04:22:13 +0000
committerbraxtonhall2022-10-24 04:22:13 +0000
commit01f4656a8c394ab1016ef303a72a53d3de3c16f1 (patch)
treed5c09073a33bea9de34ca51f8aac58a56f8d6de7
parent21d4b1499fbbb5dc6f2c91c7a2e525d0c7a1a599 (diff)
Update HTML
-rw-r--r--README.md2
-rw-r--r--index.html7
2 files changed, 7 insertions, 2 deletions
diff --git a/README.md b/README.md
index 738eae3..4f01315 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,8 @@ Can you please give me a Fibonacci function? Ideally (but not necessarily) one t
For a submission to the upcoming "Reclaim your space" exhibition at [Hatch Art Gallery](https://www.instagram.com/hatch_artgallery).
+[See the contributors here](https://braxtonhall.ca/fib)
+
## Contributing
To contribute just make a PR into the `main` branch!
diff --git a/index.html b/index.html
index 9bf65f9..1d32e83 100644
--- a/index.html
+++ b/index.html
@@ -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(