snipt/templates/pro.html

30 lines
940 B
HTML
Raw Normal View History

2012-07-03 15:22:48 -07:00
{% extends "base.html" %}
2012-06-26 13:38:38 -07:00
2012-07-03 11:06:06 -07:00
{% block page-title %}Snipt Pro{% endblock %}
2012-06-26 13:38:38 -07:00
{% block body-class %}{{ block.super }} static pro{% endblock %}
2012-07-11 23:03:46 -07:00
{% block breadcrumb %}
<li><a href="/pro/">Snipt Pro</a></li>
{% endblock %}
2012-06-26 13:38:38 -07:00
{% block content %}
<div class="pro-hero">
2013-01-21 21:00:23 -08:00
snip<span>t</span> <span class="pro">Pro</span>
</div>
2012-06-26 13:38:38 -07:00
<div class="static-box">
2013-08-13 11:20:46 -07:00
<h6>Going Pro gets you:</h6>
2013-01-21 21:00:23 -08:00
<ul>
2013-01-17 08:12:10 -08:00
<li>Custom domain for your <a href="/blogging/">Snipt blog</a>.</li>
2013-08-13 11:20:46 -07:00
<li><span class="pro">Pro</span> badge throughout the site.</li>
<li>No ads.</li>
2012-06-26 13:38:38 -07:00
</ul>
2012-07-18 21:44:56 -07:00
{% if request.user.profile.is_pro %}
2013-08-13 11:20:46 -07:00
<h3>You're already a Pro.</h3>
2012-07-18 21:44:56 -07:00
{% else %}
2014-05-02 13:54:05 -07:00
<h3><span><span class="pro">Pro</span> is only</span> $5/month.</h3>
2013-01-21 21:00:23 -08:00
<h4><a href="/pro/signup/" class="btn btn-large btn-success">Buy Now</a></h4>
2012-07-18 21:44:56 -07:00
{% endif %}
2012-06-26 13:38:38 -07:00
</div>
{% endblock %}