2024-02-26 00:34:32 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2024-03-10 01:13:16 +00:00
|
|
|
{% block title %}Welcome to the Kitten Collective!{% endblock %}
|
2024-02-26 00:34:32 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2024-03-10 01:13:16 +00:00
|
|
|
<!-- Show the monthly link if we have it -->
|
|
|
|
|
|
|
|
{% match monthly_link %}
|
|
|
|
{% when Some with (link) %}
|
|
|
|
<div>
|
|
|
|
<p><a href="{{ link }}">Just $3/month!</a></p>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
{% endmatch %}
|
|
|
|
|
|
|
|
<!-- Show the annual link if we have it -->
|
|
|
|
{% match annual_link %}
|
|
|
|
{% when Some with (link) %}
|
|
|
|
<div>
|
|
|
|
<p><a href="{{ link }}">Just $30/year!</a></p>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
{% endmatch %}
|
|
|
|
|
|
|
|
<!-- the invitation is also a URL -->
|
|
|
|
{% match invitation %}
|
|
|
|
{% when Some with (link) %}
|
|
|
|
<div>
|
|
|
|
<p><a href="{{ link }}">Free, limited account for collaborating with other kittens</a></p>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
{% endmatch %}
|
2024-02-26 00:34:32 +00:00
|
|
|
|
|
|
|
{% endblock %}
|