forked from themefisher/airspace-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog.html
42 lines (41 loc) · 1.05 KB
/
blog.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
---
layout: page
title: Blog
permalink: /blog/
---
<!-- Slider Start -->
<section id="global-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h1>Get the latest on what we're doing</h1>
<p>Catch up with us, anytime and anywhere</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">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h2>Join us</h2>
<p>We need that Network Effect</p>
<a class="btn btn-default btn-call-to-action" href="{{ site.baseurl }}/contact">Get In Touch</a>
</div>
</div>
</div>
</div>
</section>