From 383b5fe9374f580ef2d1eb3a450cb8b755ad54d4 Mon Sep 17 00:00:00 2001 From: braxtonhall Date: Sun, 23 Oct 2022 21:08:22 -0700 Subject: Migrate contributors to static html --- index.html | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 index.html (limited to 'index.html') diff --git a/index.html b/index.html new file mode 100644 index 0000000..3755c55 --- /dev/null +++ b/index.html @@ -0,0 +1,93 @@ + + + + + fib + + + + +

fib

+

Can you please give me a Fibonacci function? Ideally (but not necessarily) one that only you would give me.

+ +

For a submission to the upcoming "Reclaim your space" exhibition at Hatch Art Gallery.

+ +
+

Contributors

+
+
+ + + -- cgit v1.2.3-70-g09d2 From 21d4b1499fbbb5dc6f2c91c7a2e525d0c7a1a599 Mon Sep 17 00:00:00 2001 From: braxtonhall Date: Sun, 23 Oct 2022 21:16:20 -0700 Subject: Sort entries, use correct URL for people --- index.html | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'index.html') diff --git a/index.html b/index.html index 3755c55..9bf65f9 100644 --- a/index.html +++ b/index.html @@ -45,11 +45,11 @@
@@ -44,8 +45,10 @@

Contributors

+ + Want to contribute? -- cgit v1.2.3-70-g09d2 From b9ab257c2d46a832e0b3bb904bc40e59daa42481 Mon Sep 17 00:00:00 2001 From: braxtonhall Date: Mon, 24 Oct 2022 00:13:23 -0700 Subject: Make name sorting independent of case --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.html') diff --git a/index.html b/index.html index cbbc280..b3a7b9c 100644 --- a/index.html +++ b/index.html @@ -80,7 +80,7 @@ }).append($("").text(entry.name)), ); - const cmpName = (a, b) => a.name < b.name ? -1 : 1; + const cmpName = (a, b) => a.name.toLowerCase() < b.name.toLowerCase() ? -1 : 1; $(document).ready( _ => getContributors() -- cgit v1.2.3-70-g09d2