prueba poner imagen home y cambio nombre archivo hero.html por home.html

This commit is contained in:
alay 2017-10-07 22:45:35 +02:00 committed by josemolinag
parent 202ecf7a28
commit fb33b5c5d2
6 changed files with 165 additions and 83 deletions

22
_includes/home.html Normal file
View file

@ -0,0 +1,22 @@
<!-- Begin Hero Section -->
<section id="top-section-hero" class="top-section-hero top-section image-section" style="background-image: url('{{ site.baseurl }}/img/sections-background/{{ site.homeImage }}');">
{% include navigation.html %}
<div class="content-wrapper">
<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="{% if button.permalink != null %} {{ button.permalink | prepend: site.baseurl }} {% else %} {{ button.link }} {% endif %}" class="btn btn-primary waves-effect waves-button waves-light waves-float" {% if button.link != null %}target="_blank"{% endif %}>{{ button.text }}</a>
{% endfor %}
</div>
</div>
<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>
</div>
</section>
<!-- End Hero Section -->