{% extends "base.html" %} {% block title %}BBBird Archive โ€” Waybird Machine{% endblock %} {% block content %}
๐Ÿฆ

The Waybird Machine

Capturing & archiving bird imagery across the web since 2026.

{{ images|length if images else 0 }} Birds Archived
โˆž Birds Remaining
๐Ÿ”

Capture a Bird

Paste an image URL โ€” we fetch, verify & archive it.

Image requires authentication?
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}
{% if flags %}
{% for flag in flags %}
{{ flag.flag }}
{% endfor %}
{% endif %}

Bird Archive

All verified specimens.
{% if images %}
{% for img in images %}
Archived bird {{ img.type or '?' }}
{{ img.width or '?' }} ร— {{ img.height or '?' }}px ยท {{ (img.size / 1024)|round(1) if img.size else '?' }} KB {{ img.url }} {{ img.time.strftime('%Y-%m-%d %H:%M UTC') if img.time else 'unknown' }}
{% endfor %}
{% else %}
๐Ÿชน

The nest is empty. Archive your first bird above!

{% endif %}

About the Archive

BBBird Archive is a community-driven project to preserve bird imagery from across the internet. Like the Internet Archive's Wayback Machine preserves web pages, we preserve birds โ€” one image at a time.

{% endblock %}