blob: bdcc403a0a978032767611bb80234b1912e7c4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 %}
|