2014-07-28 21:27:01 +02:00
|
|
|
<!-- Begin Buy Tickets Section -->
|
2014-08-08 00:23:36 +02:00
|
|
|
<section id="buy-tickets" class="buy-tickets">
|
2014-07-28 21:27:01 +02:00
|
|
|
<div class="content-wrapper">
|
|
|
|
<div class="col-lg-8 col-md-10 col-lg-offset-2 col-md-offset-1">
|
2014-08-17 23:31:26 +02:00
|
|
|
<h3>{{ site.buyTicketsTitle }}</h3>
|
|
|
|
{% for ticketsOffer in site.ticketsOffers %}
|
|
|
|
{% assign colWidth = 12 | divided_by: forloop.length %}
|
|
|
|
{% assign check = forloop.index | modulo:2 %}
|
|
|
|
<div class="col-md-{{ colWidth }} col-sm-{{ colWidth }} pricing-col {% if ticketsOffer.featured != null %}pricing-col-featured{% endif %} animated hiding" data-animation="{% if forloop.index == 1 %}fadeInLeft{% elsif forloop.index == forloop.length %}fadeInRight{% else %}fadeInDown{% endif %}" data-delay="{% if check == 0 %}0{% else %}500{% endif %}">
|
|
|
|
{% if ticketsOffer.ribbon != null %}<div class="pricing-ribbon">{{ ticketsOffer.ribbon }}</div>{% endif %}
|
|
|
|
<div class="pricing-header">
|
|
|
|
<h3 class="title">{{ ticketsOffer.name }}</h3>
|
|
|
|
<h4 class="amount">{{ ticketsOffer.price }}</h4>
|
|
|
|
</div>
|
|
|
|
<div class="pricing-content">
|
|
|
|
<ul>
|
|
|
|
{% for listItem in ticketsOffer.ticketsOfferContentList %}
|
|
|
|
<li>{{ listItem }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
<a class="button" href="{{ ticketsOffer.buyButtonLink }}" target="_blank">{{ ticketsOffer.buyButtonText }}</a>
|
|
|
|
</div>
|
2014-07-28 21:27:01 +02:00
|
|
|
</div>
|
2014-08-17 23:31:26 +02:00
|
|
|
{% endfor %}
|
2014-07-28 21:27:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<!-- End Buy Tickets Section -->
|