--- title: Pricing prices: - name: Full price: 0 features: - 10 users included - 2 GB of storage - Email support - Help center access button: text: Sign up for free inverted: true - name: Pro price: 15 features: - 20 users included - 10 GB of storage - Priority email support - Help center access button: text: Get started - name: Enterprise price: 29 features: - 30 users included - 15 GB of storage - Phone and email support - Help center access button: text: Contact us ---

{{ page.title }}

Quickly build an effective pricing table for your potential customers with this Bootstrap example. It's built with default Bootstrap components and utilities with little customization.

{% for price in page.prices %}

{{ price.name }}

{{ price.price }} / month

Features

    {% for feature in price.features %}
  • {{ feature }}
  • {% endfor %}
{% include 'button' with { inverted: price.button.inverted, shape: 'rounded', size: 'large', text: price.button.text, type: 'primary' } only %}
{% endfor %}