forked from bt/1kb-club
34 lines
771 B
HTML
34 lines
771 B
HTML
|
---
|
||
|
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 %}
|
||
|
|