mirror of
https://github.com/jsbin/jsbin.git
synced 2026-01-25 15:38:56 +00:00
53 lines
1.5 KiB
HTML
53 lines
1.5 KiB
HTML
<table id="featureGrid">
|
|
<thead>
|
|
<tr class="headings">
|
|
<td> </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> </td>
|
|
{{#unless testUnlimited}}
|
|
<td> </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'}}✓{{/equal}}
|
|
{{#equal user 'free'}}✓{{/equal}}
|
|
</td>
|
|
<td class="pro">
|
|
{{#equal user 'anon'}}✓{{/equal}}
|
|
{{#equal user 'free'}}✓{{/equal}}
|
|
{{#equal user 'pro'}}✓{{/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>
|
|
|