jekyll-dopetrope/_includes/splash.html

33 lines
1.1 KiB
HTML
Raw Normal View History

2018-02-15 08:44:35 +01:00
<!-- Banner -->
<section id="banner">
<header>
<h2>Howdy. This is Dopetrope.</h2>
<p>A responsive template by HTML5 UP</p>
</header>
</section>
<!-- Intro -->
<section id="intro" class="container">
<div class="row">
2018-02-17 17:47:41 +01:00
{% assign position = 0 %}
{% for blurb in site.splash_blurbs %}
2018-02-15 08:44:35 +01:00
<div class="4u 12u(mobile)">
2018-02-17 17:47:41 +01:00
<section class="{% if position == 0 %}first{% elsif position == 1 %}middle{% else %}last{% endif %}">
<i class="icon featured {{ blurb.featured }} {{ blurb.icon }}"></i>
2018-02-15 08:44:35 +01:00
<header>
2018-02-17 17:47:41 +01:00
<h2>{{ blurb.title }}</h2>
2018-02-15 08:44:35 +01:00
</header>
2018-02-17 17:47:41 +01:00
<p>{{ blurb.content }}</p>
2018-02-15 08:44:35 +01:00
</section>
</div>
2018-02-17 20:06:09 +01:00
{% assign position = position | plus:1 %}
2018-02-17 17:47:41 +01:00
{% endfor %}
2018-02-15 08:44:35 +01:00
</div>
<footer>
<ul class="actions">
<li><a href="#" class="button big">Get Started</a></li>
<li><a href="#" class="button alt big">Learn More</a></li>
</ul>
</footer>
</section>