This repository was archived by the owner on Jun 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
41 lines (41 loc) · 1.25 KB
/
Copy pathabout.html
File metadata and controls
41 lines (41 loc) · 1.25 KB
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
---
layout: page
title: About Us
permalink: /about/
---
<!-- Slider Start -->
<section id="global-header" style="background-image: url(../img/about-bg.jpg); background-position: right center;">>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h1>This is who we are and what we do</h1>
<p>Find out about our background, experience and motivation</p>
</div>
</div>
</div>
</div>
</section>
{% for post in site.posts %}
<div class="post-area">
<a href="{{ post.url | prepend: site.baseurl }}" class="bold">{{ post.title }}</a>
<p class="post-date">{{ post.date | date_to_long_string }}</p>
<p>
{{ post.content | strip_html | truncatewords: 50 }}
</p>
</div>
{% endfor %}
<!-- Call to action Start -->
<section id="call-to-action" style="background-image: url(../img/about-bg.jpg)">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h2>Do you like our ideas?</h2>
<p>Tell us what you think, share your thoughts with us. </p>
<a class="btn btn-default btn-call-to-action" href="{{ site.baseurl }}/contact" >Drop us a note</a>
</div>
</div>
</div>
</div>
</section>