|
| 1 | +{% extends '_layouts/examples.html' %} |
| 2 | +{% from '_macros/vf_pricing-block.jinja' import vf_pricing_block %} |
| 3 | +{% block title %}Pricing block / 2-blocks{% endblock %} |
| 4 | +{% block standalone_css %}patterns_all{% endblock %} |
| 5 | +{% block content %} |
| 6 | + {% call(slot) vf_pricing_block( |
| 7 | + title_text='Kubernetes pricing', |
| 8 | + tiers=[ |
| 9 | + { |
| 10 | + 'tier_name_text': 'Kubernetes Explorer', |
| 11 | + 'tier_price_text': '$3099', |
| 12 | + 'tier_price_explanation': 'per year, per VM', |
| 13 | + 'tier_description_html': '<p>Three-day Kubernetes training to ramp up your team\'s skills.</p>', |
| 14 | + 'tier_label_text': 'What\'s included', |
| 15 | + 'tier_offerings': [ |
| 16 | + { |
| 17 | + 'list_item_style': 'ticked', |
| 18 | + 'list_item_content_html': 'High availability' |
| 19 | + }, |
| 20 | + { |
| 21 | + 'list_item_style': 'ticked', |
| 22 | + 'list_item_content_html': '<a href="#">Public clouds</a>, VMware, <a href="#">OpenStack</a>' |
| 23 | + }, |
| 24 | + { |
| 25 | + 'list_item_style': 'ticked', |
| 26 | + 'list_item_content_html': 'Storage and SDN basic options' |
| 27 | + }, |
| 28 | + { |
| 29 | + 'list_item_style': 'ticked', |
| 30 | + 'list_item_content_html': 'Logging, monitoring, alerting' |
| 31 | + }, |
| 32 | + { |
| 33 | + 'list_item_style': 'ticked', |
| 34 | + 'list_item_content_html': 'Kubernetes lifecycle management' |
| 35 | + }, |
| 36 | + { |
| 37 | + 'list_item_style': 'ticked', |
| 38 | + 'list_item_content_html': 'Security essentials' |
| 39 | + }, |
| 40 | + { |
| 41 | + 'list_item_style': 'crossed', |
| 42 | + 'list_item_content_html': 'Support or Fully Managed' |
| 43 | + }, |
| 44 | + { |
| 45 | + 'list_item_style': 'crossed', |
| 46 | + 'list_item_content_html': 'Third-party integrations' |
| 47 | + }, |
| 48 | + { |
| 49 | + 'list_item_style': 'crossed', |
| 50 | + 'list_item_content_html': 'GPU acceleration' |
| 51 | + }, |
| 52 | + { |
| 53 | + 'list_item_style': 'crossed', |
| 54 | + 'list_item_content_html': 'GPU acceleration' |
| 55 | + } |
| 56 | + ], |
| 57 | + 'cta_html': '<a href="#">Three-day Kubernetes training to ramp up your team’s skills.</a>' |
| 58 | + }, |
| 59 | + { |
| 60 | + 'tier_name_text': 'Kubernetes Explorer', |
| 61 | + 'tier_price_text': '$3099', |
| 62 | + 'tier_price_explanation': 'per year, per VM', |
| 63 | + 'tier_description_html': '<p>Three-day Kubernetes training to ramp up your team\'s skills. Three-day Kubernetes training to ramp up your team\'s skills.</p>', |
| 64 | + 'tier_label_text': 'What\'s included', |
| 65 | + 'tier_offerings': [ |
| 66 | + { |
| 67 | + 'list_item_style': 'ticked', |
| 68 | + 'list_item_content_html': 'High availability' |
| 69 | + }, |
| 70 | + { |
| 71 | + 'list_item_style': 'ticked', |
| 72 | + 'list_item_content_html': '<a href="#">Public clouds</a>, VMware, <a href="#">OpenStack</a>' |
| 73 | + }, |
| 74 | + { |
| 75 | + 'list_item_style': 'ticked', |
| 76 | + 'list_item_content_html': 'Storage and SDN basic options' |
| 77 | + }, |
| 78 | + { |
| 79 | + 'list_item_style': 'ticked', |
| 80 | + 'list_item_content_html': 'Logging, monitoring, alerting' |
| 81 | + }, |
| 82 | + { |
| 83 | + 'list_item_style': 'ticked', |
| 84 | + 'list_item_content_html': 'Kubernetes lifecycle management' |
| 85 | + }, |
| 86 | + { |
| 87 | + 'list_item_style': 'ticked', |
| 88 | + 'list_item_content_html': 'Security essentials' |
| 89 | + }, |
| 90 | + { |
| 91 | + 'list_item_style': 'crossed', |
| 92 | + 'list_item_content_html': 'Support or Fully Managed' |
| 93 | + }, |
| 94 | + { |
| 95 | + 'list_item_style': 'crossed', |
| 96 | + 'list_item_content_html': 'Third-party integrations' |
| 97 | + }, |
| 98 | + { |
| 99 | + 'list_item_style': 'crossed', |
| 100 | + 'list_item_content_html': 'GPU acceleration' |
| 101 | + } |
| 102 | + ], |
| 103 | + 'cta_html': '<a href="#">Three-day Kubernetes training to ramp up your team’s skills.</a>' |
| 104 | + } |
| 105 | + ] |
| 106 | + ) -%} |
| 107 | + {%- if slot == 'section_description' -%} |
| 108 | + <p> |
| 109 | + A low total cost of ownership. Up to five times lower than public clouds. A low total cost of ownership. Up to five times lower than public clouds. A low total cost of ownership. Up to five times lower than public clouds. |
| 110 | + </p> |
| 111 | + {%- endif -%} |
| 112 | + {% endcall %} |
| 113 | +{% endblock content %} |
0 commit comments