-
Notifications
You must be signed in to change notification settings - Fork 450
/
index.html
executable file
·62 lines (56 loc) · 2.85 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
---
layout: index
title: Home
permalink: /
---
<div id="service">
<div class="container">
<div class="row centered">
<div class="col-md-4">
<i class="fa fa-heart-o" aria-hidden="true"></i>
<span class="sr-only">An image of a love-heart</span>
<h4>Handsomely Crafted</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<p><br/><a href="#" class="btn btn-theme">More Info</a></p>
</div>
<div class="col-md-4">
<i class="fa fa-flask" aria-hidden="true"></i>
<span class="sr-only">An image of a laboratory flask</span>
<h4>Retina Ready</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<p><br/><a href="#" class="btn btn-theme">More Info</a></p>
</div>
<div class="col-md-4">
<i class="fa fa-trophy" aria-hidden="true"></i>
<span class="sr-only">An image of a trophy</span>
<h4>Quality Theme</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<p><br/><a href="#" class="btn btn-theme">More Info</a></p>
</div>
</div>
</div><!--/container -->
</div><!--/service -->
{% include portfolio.html title="LATEST WORKS" limit=10 %}
<div class="container mtb">
<div class="row">
<div class="col-lg-4 col-lg-offset-1">
<h4>More About Our Agency.</h4>
<p>{{ site.about }}</p>
<p><br/><a href="{{ "/about/" | prepend: site.baseurl }}" class="btn btn-theme">More Info</a></p>
</div>
<div class="col-lg-3">
<h4>Frequently Asked</h4>
<div class="hline"></div>
{% for question in site.questions %}
<p><a href="{{ question.url | prepend: site.baseurl }}">{{ question.title }}</a></p>
{% endfor %}
</div>
<div class="col-lg-3">
<h4>Latest Posts</h4>
<div class="hline"></div>
{% for post in site.posts limit:5 %}
<p><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}.</a></p>
{% endfor %}
</div>
</div><!--/row -->
</div><!--/container -->