33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!-- 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">
|
|
{% assign position = 0 %}
|
|
{% for blurb in site.splash_blurbs %}
|
|
<div class="4u 12u(mobile)">
|
|
<section class="{% if position == 0 %}first{% elsif position == 1 %}middle{% else %}last{% endif %}">
|
|
<i class="icon featured {{ blurb.featured }} {{ blurb.icon }}"></i>
|
|
<header>
|
|
<h2>{{ blurb.title }}</h2>
|
|
</header>
|
|
<p>{{ blurb.content }}</p>
|
|
</section>
|
|
</div>
|
|
{% assign position = position | plus:1 %}
|
|
{% endfor %}
|
|
</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>
|