snipt/templates/pro.html

37 lines
1.8 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="static-box">
2012-07-23 21:34:30 -07:00
<h2>Snipt <span class="pro">Pro</span> members</h2>
2012-08-01 12:52:30 -07:00
<p>We're still building our <span class="pro">Pro</span> platform, but it already kicks ass. By becoming a Pro now, you'll also get access to future Pro features the moment they're released.</p>
2012-06-26 13:38:38 -07:00
<h6>Current Pro features:</h6>
<ul>
2012-07-30 10:20:56 -07:00
<li>No advertisements (including Amazon books).</li>
2012-06-26 13:38:38 -07:00
<li>&ldquo;Pro&rdquo; badge throughout the site.</li>
2012-08-01 12:53:17 -07:00
<li>Custom domain for your <a href="https://blog.snipt.net/announcing-the-sniptnet-blogging-platform/">Snipt blog</a>. Contact <a href="mailto:support@snipt.net">support@snipt.net</a> to set up.</li>
2012-07-18 21:39:43 -07:00
<li>You&rsquo;re <strong>supporting</strong> current and future development. This stuff takes time and money.</li>
2012-06-26 13:38:38 -07:00
</ul>
<h6>Planned Pro features (not in order):</h6>
<ul>
<li>Collaborative group editing of snipts.</li>
<li>Site-wide setting for viewing snipts in different themes.</li>
<li>Ability to theme your embedded snipts in a specific theme.</li>
2012-07-23 09:31:06 -07:00
<li>Premium (Pro-only) themes for your <a href="https://blog.snipt.net/announcing-the-sniptnet-blogging-platform/">Snipt blog</a>.</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 %}
2012-08-11 07:12:13 -07:00
<h3>Pro accounts are just $4/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 %}