diff options
-rw-r--r-- | templates/main.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/main.html b/templates/main.html index 3ac5c50..6012b21 100644 --- a/templates/main.html +++ b/templates/main.html @@ -15,19 +15,19 @@ Now at hackerspace {% endfor %} </ul> {% trans n_unk=unknown|length %} - There is {{ n_unk }} unknown device operating. + <p>There is {{ n_unk }} unknown device operating. </p> {% pluralize %} - There are {{ n_unk }} unknown devices operating. + <p>There are {{ n_unk }} unknown devices operating.</p> {% endtrans %} {% trans n_kek=kektops|length %} - There is {{ n_kek }} unknown kektop operating. + <p>There is {{ n_kek }} unknown kektop operating.</p> {% pluralize %} - There are {{ n_kek }} unknown kektops operating. + <p>There are {{ n_kek }} unknown kektops operating.</p> {% endtrans %} {% trans n_esp=esps|length %} - There is {{ n_esp }} unknown ESP operating. + <p>There is {{ n_esp }} unknown ESP operating.</p> {% pluralize %} - There are {{ n_esp }} unknown ESPs operating. + <p>There are {{ n_esp }} unknown ESPs operating.</p> {% endtrans %} <hr> <a href="claim">Claim this device!</a> |