mirror of
https://github.com/tabler/tabler.git
synced 2026-07-28 14:04:38 +04:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{% assign features = "Sharing Tools|Design Tools|Private Messages|Twitter API" | split: '|' %}
|
|
{% assign available-features = include.features | default: '1000' | split: '' %}
|
|
<div class="card">
|
|
{% if include.featured-color %}
|
|
<div class="card-status bg-{{ include.featured-color }}"></div>
|
|
{% endif %}
|
|
|
|
<div class="card-body text-center">
|
|
<div class="text-uppercase text-muted">{{ include.category | default: 'Enterprise' }}</div>
|
|
<div class="h1 my-4">${{ include.price | default: '79' }}</div>
|
|
|
|
<ul class="list-unstyled lh-lg">
|
|
<li><strong>{{ include.users | default: 10 }}</strong> Users</li>
|
|
{% for feature in features %}
|
|
<li>
|
|
{% if available-features[forloop.index0] == '1' %}
|
|
{% include ui/icon.html icon="check" class="mr-1 text-success" %}
|
|
{% else %}
|
|
{% include ui/icon.html icon="x" class="mr-1 text-danger" %}
|
|
{% endif %}
|
|
{{ feature }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<div class="text-center mt-6">
|
|
<a href="#" class="btn btn-{{ include.featured-color | default: 'secondary' }} btn-block">Choose plan</a>
|
|
</div>
|
|
</div>
|
|
</div>
|