datamad2017/_includes/about.html

26 lines
1.2 KiB
HTML
Raw Normal View History

2014-07-28 21:27:01 +02:00
<!-- About Section -->
<section id="about" class="about">
2014-07-28 21:27:01 +02:00
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>{{ site.aboutTitle }}</h3>
2014-07-28 21:27:01 +02:00
<div class="row about-details">
{% assign animationDelay = 0 %}
{% for about in site.aboutBlock %}
{% assign colWidth = 12 | divided_by: forloop.length %}
<div class="col-md-{{ colWidth }} col-xs-6">
<div class="animated hiding" data-animation="fadeInDown" data-delay="{{ animationDelay }}">
<h5>{{ about.title }}</h5>
<img class="img-circle" src="{{ site.baseurl }}/img/{{ about.image }}" height="128" width="128" alt="{{ about.title }}">
<p>{{ about.text }}</p>
2014-07-28 21:27:01 +02:00
</div>
</div>
{% assign animationDelay = animationDelay | plus:500 %}
{% assign check = forloop.index | modulo:2 %}
{% if check == 0 %} <div class="clearfix visible-xs"></div> {% endif %}
{% endfor %}
2014-07-28 21:27:01 +02:00
</div>
</div>
</div>
</section>
<!-- End About Section -->