datamad2017/_includes/about-hackathon.html

22 lines
1.1 KiB
HTML
Raw Normal View History

2014-08-27 23:49:51 +02:00
<!-- About Hackathon Section -->
<section id="about-hackathon" class="about-hackathon">
<div class="content-wrapper">
2014-08-28 17:50:12 +02:00
<div class="col-md-8 col-md-offset-2">
<h3>{{ site.aboutHackathonTitle }}</h3>
{% for row in site.hackathonRows %}
{% assign check = forloop.index0 | modulo:2 %}
<div class="hackathon-row {% if check == 0 %}float-left{% else %}float-right{% endif %} col-md-12">
<div class="hackathon-img-wrapper animated hiding" data-animation="{% if check == 0 %}fadeInLeft{% else %}fadeInRight{% endif %}" data-delay="0">
<img class="img-responsive" src="{{ site.baseurl }}/img/hackathon/{{ row.image }}" alt="">
2014-08-28 17:50:12 +02:00
</div>
<div class="hackathon-details animated hiding" data-animation="{% if check == 0 %}fadeInRight{% else %}fadeInLeft{% endif %}" data-delay="0">
<h4>{{ row.title }}</h4>
<p>{{ row.details }}</p>
2014-08-28 17:50:12 +02:00
</div>
2014-08-27 23:49:51 +02:00
</div>
{% endfor %}
2014-08-27 23:49:51 +02:00
</div>
</div>
</section>
<!-- End About Hackathon Section -->