-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
123 lines (100 loc) · 3.94 KB
/
index.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
---
layout: home-layout
published: true
---
<!-- START Services Section -->
{% include services.html %}
<!-- END Services Section -->
<!-- START Featured Posts Section -->
<div class="section nobg notopmargin" id="feature-post">
<div class="container">
<div class="fancy-title title-border">
<h4>Featured Posts</h4>
</div>
{% for post in site.posts limit:4 %}
{% if post.feature_post %}
<div class="col-md-4 bottommargin">
<div class="ipost clearfix">
<div class="entry-image">
<a href="{{ post.url }}"><img class="image_fade" src="/img/{{ post.image }}" alt="{{ post.image_alt }}" style="opacity: 0.8;"></a>
</div>
<div class="entry-title">
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
</div>
<ul class="entry-meta clearfix">
<li><i class="icon-calendar3"></i>{{ post.date | date_to_string }}</li>
{% if post.categories[0] %}
<li><i class="icon-folder-close-alt"></i><a href="/category/{{ post.categories | first | slugify }}">{{ post.categories | first }}</a></li>
{% endif %}
</ul>
<div class="entry-content">
<p>
{{ post.short_description }}
<br><span><a class="more-link" href="{{ post.url }}"> See More <i class="icon-line-arrow-right" style="padding-left: 3px;"></i></a></span>
</p>
</div>
</div>
</div>
{% endif %}
{% endfor %}
<div class="clear"></div>
</div>
</div>
<!-- END Featured Posts Section -->
<!-- START Client Section -->
<div id="client-testimonial" class="section nobottommargin nobg" style="padding-bottom: 150px;">
<div class="container clearfix">
<div class="heading-block">
<h2>Our Clients</h2>
<span>We've worked with companies across the industry to deliver the highest quality onboarding, manager development, and learning programs:</span>
</div>
<div class="col-md-7 nobottommargin hidden-xs">
<ul class="clients-grid grid-2 nobottommargin clearfix">
{% for client in site.data.clients %}
<li>
<a href="http://{{ client.client_website_url }}"><img src="/img/{{ client.logo }}" alt="{{ client.company_name }} Logo"></a>
</li>
{% endfor %}
</ul>
</div>
<div class="bottommargin visible-xs">
<ul class="clients-grid grid-1 nobottommargin clearfix">
{% for client in site.data.clients %}
<li>
<a href="{{ client.client_website_url }}"><img src="/img/{{ client.logo }}" alt="{{ client.company_name }} Logo"></a>
</li>
{% endfor %}
</ul>
</div>
<div class="col-md-5 nobottommargin">
<div class="fslider testimonial" data-animation="fade" data-arrows="false" data-pause="10000">
<div class="flexslider">
<div class="slider-wrap">
{% for client in site.data.clients %}
{% if client.has_testimonial != false %}
<div class="slide">
<div class="testi-content">
<blockquote class="quote" style="margin-bottom: 20px;">
<p class="client-testimonial">
{{ client.testimonial }}
</p>
</blockquote>
<div class="testi-meta" style="margin-bottom: 3em; margin-left: 25px;">
{{ client.company_name }}
{% if client.client_testimonial_name != "" %}
<span>{{ client.client_testimonial_name }}, {{ client.client_testimonial_job_title }}</span>
{% else %}
{% endif %}
</div>
</div>
</div>
{% else %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END Client Section -->