forked from gdg-x/zeppelin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
25 lines (25 loc) · 1.19 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!-- About Section -->
<section id="about" class="about">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>{{ site.aboutTitle }}</h3>
<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-section/{{ about.image }}" height="128" width="128" alt="{{ about.title }}">
<p>{{ about.text }}</p>
</div>
</div>
{% assign animationDelay = animationDelay | plus:500 %}
{% assign check = forloop.index | modulo:2 %}
{% if check == 0 %} <div class="clearfix visible-xs"></div> {% endif %}
{% endfor %}
</div>
</div>
</div>
</section>
<!-- End About Section -->