Updated partnership proposition, changed .explore icon animation, added new tickets block, merged js plugins into one file, refactoring of scripts.js, minor style fixes

This commit is contained in:
Oleh Zasadnyy 2014-08-25 12:42:51 +03:00
parent e9ee50a004
commit 220149a695
43 changed files with 432 additions and 5692 deletions

View file

@ -1,28 +0,0 @@
<!-- Begin Buy Tickets Section -->
<section id="buy-tickets" class="buy-tickets">
<div class="content-wrapper">
<div class="col-lg-8 col-md-10 col-lg-offset-2 col-md-offset-1">
<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.ticketContentList %}
<li>{{ listItem }}</li>
{% endfor %}
</ul>
<a class="button" href="{{ ticketsOffer.buyButtonLink }}" target="_blank">{{ ticketsOffer.buyButtonText }}</a>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<!-- End Buy Tickets Section -->