mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2025-06-07 22:11:29 +02:00
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:
parent
e9ee50a004
commit
220149a695
43 changed files with 432 additions and 5692 deletions
28
_includes/tickets.html
Normal file
28
_includes/tickets.html
Normal file
|
@ -0,0 +1,28 @@
|
|||
<!-- Begin Tickets Section -->
|
||||
<section id="tickets" class="tickets">
|
||||
<div class="content-wrapper">
|
||||
<div class="col-lg-8 col-md-10 col-lg-offset-2 col-md-offset-1">
|
||||
<h3>{{ site.ticketsTitle }}</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">
|
||||
<p class="title">{{ ticketsOffer.name }}</p>
|
||||
<p class="price">{{ ticketsOffer.price }} <span class="currency">{{ ticketsOffer.priceCurrency }}</span></p>
|
||||
</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 Tickets Section -->
|
Loading…
Add table
Add a link
Reference in a new issue