webringer 1.0.3

A bin/lib crate for a webring site
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}

{% block title %}Home - WebRinger{% endblock %}

{% block content %}

<h2>Sites</h2>
{% if sites.is_empty() %}
<p>No sites in the Webring yet :( Maybe you should add yours!</p>
{% else %}
<ul>
	{% for site in sites %}
	<li><a href={{ site }}>{{ site }}</a></li>
	{% endfor %}
</ul>
{% endif %}

{% endblock %}