jsbin/views/partials/features.html
2016-07-10 22:06:46 +01:00

53 lines
1.5 KiB
HTML

<table id="featureGrid">
<thead>
<tr class="headings">
<td>&nbsp;</td>
{{#unless testUnlimited}}
<th>Free account</th>
<th>
Pro <small class="upgrade-cost">@ £5/month*</small>
</th>
{{/unless}}
</tr>
</thead>
<tfoot class="upgrade">
<tr>
<td>&nbsp;</td>
{{#unless testUnlimited}}
<td>&nbsp;</td>
<td>
<a class="actionButton actionButton-rounded actionButton-primary actionButton-jumbo" href="/account/upgrade/pay">Upgrade!</a>
</td>
{{/unless}}
</tr>
</tfoot>
<tbody>
{{#each featureList}}
<tr class="{{user}}">
<td class="feature">
{{#if tip}}
<span tabIndex="0" class="tip" data-tip="{{tip}}">?</span>
{{/if}}
{{{name}}}
</td>
{{#unless @root.testUnlimited}}
<td class="free">
{{#equal user 'anon'}}&#10003;{{/equal}}
{{#equal user 'free'}}&#10003;{{/equal}}
</td>
<td class="pro">
{{#equal user 'anon'}}&#10003;{{/equal}}
{{#equal user 'free'}}&#10003;{{/equal}}
{{#equal user 'pro'}}&#10003;{{/equal}}
</td>
{{/unless}}
</tr>
{{/each}}
</tbody>
</table>
<p>...and many other features including preprocessors, linting and <a href="http://jsbin.com/help/features">more</a>.</p>
<p><small>We're also working on a full read & write API for Pro users, so watch our <a href="/blog" target="_blank">blog</a> for the latest releases.</small></p>