{% extends "base.html" %} {% block content %}

{{ page.title }}

Proud member of the exclusive 250KB Club!

|

{{ page.title }} is a member of the exclusive 250KB Club. The page weighs {% if page.extra.size == 0 %} under 1kb {% else %} only {{ page.extra.size }}kb {% endif %} and has a content-to-bloat ratio of {{ page.extra.ratio }}%.

They are now entitled to add one of those shiny badges to your page. But don't forget, even though I tried to make them as small as possibe, a badge will add some kilobytes to your page weight. A code snipped can be found by clicking on the respective badge.

The badges can either be downloaded and served by yourself or linked directly from 250KB.club. The latter might save a few users some bandwidth if the badge is already cached. On the other hand this gives the 250KB.club server a log entry for every visitor of your page. I'm not interested in those logs but you still have to trust my word. So decide for yourself.

simple badge, dark (1.4kB)

  <a title="250KB Club page" href="https://250kb.club/{{ page.slug }}">
    <img
      alt="badge: proud member of the 250KB Club"
      src="https://250kb.club/simple_badge_dark.png"
    />
  </a>
    
simple badge, bright (1.7kB)

  <a title="250KB Club page" href="https://250kb.club/{{ page.slug }}">
    <img
      alt="badge: proud member of the 250KB Club"
      src="https://250kb.club/simple_badge_bright.png"
    />
  </a>
    
color badge, bright (4.0kB)

  <a title="250KB Club page" href="https://250kb.club/{{ page.slug }}">
    <img
      alt="badge: proud member of the 250KB Club"
      src="https://250kb.club/color_badge_bright.png"
    />
  </a>
    
color badge, dark (5.7kB)

  <a title="250KB Club page" href="https://250kb.club/{{ page.slug }}">
    <img
      alt="badge: proud member of the 250KB Club"
      src="https://250kb.club/color_badge_dark.png"
    />
  </a>
    

back

{% endblock content %}