snipt/templates/pro.html

48 lines
2.5 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">
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-01-21 21:00:23 -08:00
<p>
Go Pro to get a more streamlined Snipt interface, as well as unlock powerful blogging features.<br />
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>Interface features:</h6>
2012-06-26 13:38:38 -07:00
<ul>
<li>No ads.</li>
2013-01-21 21:00:23 -08:00
<li><span class="pro">Pro</span> badge throughout the site.</li>
<li>Statistics for "views" and "favorites" of your snipts.</li>
<li>Multiple editors: CodeMirror (rich-code editing) or a plain-old textarea.</li>
<li>17 CodeMirror editor themes to choose from.</li>
<li>Full-screen editor mode.</li>
2013-01-21 21:00:23 -08:00
</ul>
<h6>Blogging features:</h6>
<ul>
2013-01-17 08:12:10 -08:00
<li>Custom domain for your <a href="/blogging/">Snipt blog</a>.</li>
<li>Customize CSS in your blog theme.</li>
2013-01-21 21:00:23 -08:00
<li>Exclusive Pro-only theme for your blog. <a href="http://nicksergeant.com/">Here's a preview</a> of the first available theme (working on more).</li>
<li><a href="https://www.gittip.com/">GitTip</a> integration ("tip" link on every snipt next to your username, and on your profile). <a href="https://snipt.net/nick/">Sample</a>.</li>
<li>Use your own <a href="http://disqus.com">Disqus</a> account for comments on your Snipt blog.</li>
<li>Use your own <a href="http://analytics.google.com">Google Analytics</a> account for tracking visits to your Snipt blog.</li>
2013-02-07 08:16:11 -08:00
<li>Use your own <a href="http://get.gaug.es/">Gauges</a> account for tracking visits to your Snipt blog.</li>
<li>Display your own <a href="https://www.google.com/adsense/">Google Ads</a> in the sidebar of your Snipt blog.</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 %}
2013-01-21 21:00:23 -08:00
<h3><span><span class="pro">Pro</span> is only</span> $3/month.</h3>
<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 %}