-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog.html
57 lines (56 loc) · 1.95 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
layout: default
title: Gonebusy | Blog
description: Gonebusy Blog - keep up with the latest news and updates from our team to yours.
keywords: Gonebusy, booking, platform, api, developers, portal, blog
---
<section id="main" class="wrapper style3">
<div class="container">
<div class="row">
<div class="8u">
<section>
{% for post in site.posts %}
<section class="blog-post">
<header class="major">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p class="post-date">{{ post.date | date: '%B %-d, %Y' }}</p>
</header>
<section>
{{ post.excerpt }}
</section>
<section class="special">
<ul class="actions align-left">
<li><a href="{{ post.url }}" class="read-more"><p>Read More<i class="fa fa-long-arrow-right"></i></p></a></li>
</ul>
</section>
</section>
{% endfor %}
</section>
</div>
<div class="4u">
<h1>Recent Posts</h1>
<section class="side-nav">
<div class="docs-nav">
{% for post in site.posts %}
<div class="docs-nav-wrap">
<li>
<a href="{{ post.url }}">
<p class="post-link">{{ post.title }}</p>
<p class="post-date">{{ post.date | date: '%b %-d, %Y' }}</p>
</a>
</li>
</div>
{% endfor %}
</div>
</section>
<section class="forkus align-center">
<a href="https://github.com/gonebusy/gonebusy.github.io">
<li><img src="/images/octocat.png" alt="Forkus Octocat"></img></li>
<li><img src="/images/fork-us-on.svg" alt="Forkus on GitHub"></img></li>
<li><img src="/images/git-hub-logo.svg" alt="Forkus on GitHub"></img></li>
</a>
</section>
</div>
</div>
</div>
</section>