From 55e8de517a23fbb318946bcda866a727e9010de9 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Tue, 5 Oct 2021 14:19:34 +0000 Subject: [PATCH] Remove order system, randomize listings, switch to sans-serif, update uglyduck.ca --- _site_listings/uglyduck.ca.md | 2 +- index.html | 96 +++++++---------------------------- style.css | 2 +- 3 files changed, 20 insertions(+), 80 deletions(-) diff --git a/_site_listings/uglyduck.ca.md b/_site_listings/uglyduck.ca.md index 0c9f8ca..d44999f 100644 --- a/_site_listings/uglyduck.ca.md +++ b/_site_listings/uglyduck.ca.md @@ -1,4 +1,4 @@ --- pageurl: uglyduck.ca -size: 305.7 +size: 42.1 --- diff --git a/index.html b/index.html index 3acab6d..af78c3c 100644 --- a/index.html +++ b/index.html @@ -22,14 +22,12 @@ summary: Listing all websites under 1MB in total size
How can I help support this project? -

If you are feeling generous, I would greatly appreciate any donations to help support the site.

-
    -
  1. XMR:
    84Pd48H5qSX2B5bBy881A73KmgdQxmRPg9pQ9faftMWEfRpQmbesiishjnYBhRy5dj6No8a1ksCYpdPbiypWxdMw3GD5zwD
  2. -
  3. BTC:
    3JGsvjgxamQHi4VCALER4rXvnvzdWUaQGg
  4. -
  5. ETH:
    0x5a0c2841aa63c8abd5ee9b9bd67092ecb55221c2
  6. -
  7. BCH:
    pze5vzlh7hv9lrdj6s0q2t20ylzp7uvpvc69jkpdsw
  8. -
  9. Or simply buy me a coffee
  10. -
+

If you are feeling generous, I would greatly appreciate any donations to help support the site.

+
+
+
+ Why is the members list randomized? +

This gives visitors the ability to see interesting and new websites everytime they visit! It also prevents odd instances of "racing to the top".


@@ -42,13 +40,6 @@ summary: Listing all websites under 1MB in total size

Official Members

- Jump to:   - <50KB  ·  - <100KB  ·  - <250KB  ·  - <512KB  ·  - <700KB  ·  - Just Under 1MB

@@ -57,75 +48,24 @@ summary: Listing all websites under 1MB in total size - - {% assign site_items = site.site_listings | sort: 'size' %} - - - {% for item in site_items %} - {% if item.size <= 50 %} + + {% assign websites = site.site_listings %} + {% for item in websites %} - {% endif %} - {% endfor %} - - - - {% for item in site_items %} - {% if item.size >= 50.1 and item.size <=100 %} - - - - - {% endif %} - {% endfor %} - - - - {% for item in site_items %} - {% if item.size >= 100.1 and item.size <=250 %} - - - - - {% endif %} - {% endfor %} - - - - {% for item in site_items %} - {% if item.size >= 250.1 and item.size <=512 %} - - - - - {% endif %} - {% endfor %} - - - - {% for item in site_items %} - {% if item.size >= 512.1 and item.size <=700 %} - - - - - {% endif %} - {% endfor %} - - - - {% for item in site_items %} - {% if item.size >= 700.1 and item.size <=1000 %} - - - - - {% endif %} - {% endfor %} + {% endfor %}
Size (KB)


<50KB
{{ item.pageurl }} {{ item.size }}


<100KB
{{ item.pageurl }}{{ item.size }}


<250KB
{{ item.pageurl }}{{ item.size }}


<512KB
{{ item.pageurl }}{{ item.size }}


<700KB
{{ item.pageurl }}{{ item.size }}


Just Under 1MB
{{ item.pageurl }}{{ item.size }}


+ diff --git a/style.css b/style.css index bae922a..a85ebae 100644 --- a/style.css +++ b/style.css @@ -1,4 +1,4 @@ -body{margin:0 auto;max-width:75ch;padding:10px;} +body{font-family:sans-serif;margin:0 auto;max-width:75ch;padding:10px;} pre{overflow:auto;} table{border-collapse:collapse;width:100%;} table tbody tr:nth-of-type(even) td{background:#f9f9f9;}