datamad2017/_includes/hero.html

20 lines
1.1 KiB
HTML
Raw Normal View History

<!-- 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');">
2014-07-28 21:27:01 +02:00
{% 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" 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 %}
2014-07-28 21:27:01 +02:00
</div>
</div>
<a href="#about" class="explore">
2014-07-28 21:27:01 +02:00
<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 Hero Section -->