-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhero.html
More file actions
12 lines (12 loc) · 735 Bytes
/
Copy pathhero.html
File metadata and controls
12 lines (12 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
<section class="hero {% if page.hero_height %} {{ page.hero_height }} {% else %} is-medium {% endif %} is-bold is-primary" {% if page.hero_image %} style="background: url('{{ page.hero_image }}') no-repeat center center; background-size: cover;" {% endif %}>
<div class="hero-body {% if page.hero_darken %} hero-darken {% endif %}">
<div class="container">
<h1 class="title is-2">{{ page.title }}</h1>
<p class="subtitle is-3">{{ page.subtitle }}</p>
{{ page.date }}
{% if page.hero_link %}
<a href="{{ page.hero_link | relative_url }}" class="button is-info is-large">{{ page.hero_link_text }}</a>
{% endif %}
</div>
</div>
</section>