snipt/templates/pro.html

37 lines
1.6 KiB
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">
<span>Pro</span>
</div>
2012-06-26 13:38:38 -07:00
<div class="static-box">
<h2>Snipt <span class="pro">Pro</span></h2>
<p>Go Pro to get a more streamlined Snipt interface, as well as to unlock powerful blogging features (custom domain, premium themes, etc).</p>
<p>We're always adding new features for Pro users, so check this list often or follow us on <a href="https://twitter.com/snipt/">Twitter</a>.</p>
<h6>Pro features:</h6>
2012-06-26 13:38:38 -07:00
<ul>
<li>No ads.</li>
<li>Statistics for "views" and "favorites" of your snipts.</li>
2012-06-26 13:38:38 -07:00
<li>&ldquo;Pro&rdquo; badge throughout the site.</li>
<li><a href="https://www.gittip.com/">GitTip</a> integration ("tip" link on every snipt next to your username).</li>
2013-01-17 08:12:10 -08:00
<li>Custom domain for your <a href="/blogging/">Snipt blog</a>.</li>
2013-01-17 08:12:40 -08:00
<li>Exclusive Pro-only theme for your blog. Here's a <a href="http://nicksergeant.com/">preview of the theme</a>.</li>
2013-01-19 21:13:56 -08:00
<li>Ability to customize CSS in your blog theme.</li>
2012-06-26 13:38:38 -07:00
</ul>
2012-07-18 21:44:56 -07:00
{% if request.user.profile.is_pro %}
<h3>You're already a Pro. You know that ;)</h3>
{% else %}
<h3>Pro is just $3/month.</h3>
2012-07-18 21:44:56 -07:00
<h4><a href="/pro/signup/" class="btn btn-large btn-success">Sign Up Now</a></h4>
{% endif %}
2012-06-26 13:38:38 -07:00
</div>
{% endblock %}