aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-01-18 10:44:33 -0500
committerBradley Taunt <bt@btxx.org>2024-01-18 10:44:33 -0500
commit686a5b1e94a35cd1e293483638ece0d648c4563f (patch)
tree592e59dda5e3de12faf1532da826be556350fadd /index.html
Initial commit to new cgit platform
Diffstat (limited to 'index.html')
-rw-r--r--index.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..bdcc403
--- /dev/null
+++ b/index.html
@@ -0,0 +1,33 @@
+---
+layout: default
+title: A collection of websites weighing in less than 1kB
+summary: Listing all websites under 1kB in total size
+---
+
+<p>1kB Club is a list of web pages weighing less than 1 kilobyte (1,024 bytes).
+
+<p>---
+{% assign websites = site.site_listings | sort: 'size' %}
+{% assign users = site.u | sort: 'size' %}
+<p>Members (<a href="/submit">Submit</a>)
+<table>
+ <thead>
+ <tr>
+ <td>URL</td>
+ <td>Size in bytes</td>
+ </tr>
+ </thead>
+ <tbody>
+ {% for item in websites %}
+ <tr>
+ <td><a href="https://{{ item.pageurl }}">{{ item.pageurl }}</a></td>
+ <td><code>{{ item.size }}</code></td>
+ </tr>
+ {% endfor %}
+ </tbody>
+</table>
+
+<p>---
+
+{% include users.html %}
+