{% extends "base.html" %}
{% block title %}Home - WebRinger{% endblock %}
{% block content %}
Sites
{% if sites.is_empty() %}
No sites in the Webring yet :( Maybe you should add yours!
{% else %}
{% for site in sites %}
{{ site }}
{% endfor %}
{% endif %}
{% endblock %}