2014-07-28 21:27:01 +02:00
|
|
|
<!-- About Section -->
|
2014-08-08 00:23:36 +02:00
|
|
|
<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">
|
2014-08-17 23:31:26 +02:00
|
|
|
<h3>{{ site.aboutTitle }}</h3>
|
2017-10-08 22:48:39 +02:00
|
|
|
<h6>{{ site.aboutDescription}}</h6>
|
2014-07-28 21:27:01 +02:00
|
|
|
<div class="row about-details">
|
2014-08-17 23:31:26 +02:00
|
|
|
{% 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>
|
2014-08-29 16:57:46 +02:00
|
|
|
<img class="img-circle" src="{{ site.baseurl }}/img/about-section/{{ about.image }}" height="128" width="128" alt="{{ about.title }}">
|
2014-08-17 23:31:26 +02:00
|
|
|
<p>{{ about.text }}</p>
|
2014-07-28 21:27:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-08-17 23:31:26 +02:00
|
|
|
{% 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 -->
|