forked from gdg-x/zeppelin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into gh-pages
- Loading branch information
Showing
115 changed files
with
428 additions
and
7,327 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
<!-- Begin Top Section --> | ||
<!-- Begin Hero Section --> | ||
<section id="top-section-hero" class="top-section-hero top-section image-section" style="background-image: url('{{ site.baseurl }}/img/hero.jpg');"> | ||
|
||
{% include navigation.html %} | ||
<div class="jumbotron"> | ||
<div class="animated hiding" data-animation="fadeInDown" data-delay="500"> | ||
{% assign heroText = site.heroTitle | split:"<typeout>" %} | ||
<h1>{{ heroText[0] }}<span id="typeout-text"></span>{{ heroText[1] }}</h1> | ||
<h1>{{ heroText[0] }}<span id="typeout-text" class="hidden-xs"></span><span class="typeout-fallback">{{ site.typeoutFallback }}</span>{{ heroText[1] }}</h1> | ||
<p>{{ site.eventDate }}</p> | ||
{% for button in site.heroButtons %} | ||
<a href="{{ button.url }}" class="btn btn-primary waves-effect waves-button waves-light waves-float" target="_blank">{{ button.text }}</a> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
<a href="#about" class="explore animated hidden fadeInDown"> | ||
<a href="#about" class="explore"> | ||
<svg class="icon icon-arrow-down" viewBox="0 0 32 32"> | ||
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-arrow-down"></use> | ||
</svg> | ||
</a> | ||
</section> | ||
<!-- End Top Section --> | ||
<!-- End Hero Section --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!-- Begin Tickets 2 Section --> | ||
<section id="tickets-2" class="tickets-2"> | ||
<div class="content-wrapper"> | ||
<div class="col-lg-8 col-md-10 col-lg-offset-2 col-md-offset-1"> | ||
<h3>{{ site.ticketsTitle }}</h3> | ||
<div class="tickets-table row animated hiding" data-animation="fadeInDown" data-delay="0"> | ||
{% assign animationDelay = 0 %} | ||
{% for ticketsOffer in site.ticketsOffers %} | ||
<div class="tickets-row animated hiding" data-animation="fadeInDown" data-delay="{{ animationDelay }}"> | ||
<div class="row"> | ||
<div class="col-md-6 col-xs-12"> | ||
<p class="title">{{ ticketsOffer.name }}</p> | ||
{% if ticketsOffer.additionalInfo != null %} | ||
<span class="ticket-additional-info">{{ ticketsOffer.additionalInfo }}</span> | ||
{% endif %} | ||
</div> | ||
<div class="col-md-3 col-xs-12"> | ||
<p class="price">{{ ticketsOffer.price }} {{ ticketsOffer.priceCurrency }}</p> | ||
{% if ticketsOffer.disabled != true %} | ||
{% assign ticketValidTo = ticketsOffer.validThrough | split: "T" %} | ||
<span class="ticket-sales">Before {{ ticketValidTo[0] | date: "%-d %B %Y"}} {{ ticketValidTo[1] }} or {{ ticketsOffer.ticketsNumber }} tickets</span> | ||
{% endif %} | ||
</div> | ||
<div class="col-md-3 col-xs-12"> | ||
{% if ticketsOffer.disabled != true %} | ||
<span class="bordered dark-border button"> | ||
<a href="{{ ticketsOffer.buyButtonLink }}" class="waves-effect waves-button" target="_blank">{{ ticketsOffer.buyButtonText }}</a> | ||
</span> | ||
{% else %} | ||
{% assign ticketValidFrom = ticketsOffer.validFrom | split: "T" %} | ||
<p class="ticket-fallback">Ticket sales will begin on {{ ticketValidFrom[0] | date: "%-d %B %Y"}} {{ ticketValidFrom[1] }}</p> | ||
{% endif %} | ||
</div> | ||
</div> | ||
</div> | ||
{% assign animationDelay = animationDelay | plus:250 %} | ||
{% endfor %} | ||
</div> | ||
<span class="tickets-info">{{ site.ticketsInfo }}</span> | ||
</div> | ||
</div> | ||
</section> | ||
<!-- End Tickets 2 Section --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.