diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 33 |
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 %} + |