-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
41 lines (40 loc) · 1.16 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
---
layout: default
style: entryway
title: blog
---
<div class="blog">
<div class="intro">
<div class="fixed-wrap">
<h1>we share our knowledge</h1>
<p>Whether you like it or not.</p>
</div><!--fixed-wrap-->
</div>
<div class="fixed-wrap">
<div class="sidebar">
<div class="archives">
<h2>archives</h2>
{% for post in site.posts %}
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
<h5>{{ post.date | date: '%b. %d, %Y' }}</h5>
<p>{{ post.content | truncate: '137' }}
<a href="{{ post.url }}">Read More -></a>
</p>
{% endfor %}
</div>
</div>
</div><!--sidebar-->
<div id="div-purple" class="divider">
</div>
<div class="main">
<h2>latest piece</h2>
<h3>{{ site.posts.first.title }} </h3>
<h4>by {{ site.posts.first.author }}</h4>
<h5>{{ site.posts.first.date | date: '%b. %d, %Y' }}</h5>
{% include readability.html %} <br/>
<img src="../images/good-food-good-people.png" alt="agile process" width="221">
{{ site.posts.first.content }}
{{ paginator.next_page }}
</div><!--main-->
</div><!--process-->
</div><!--fixed-wrap-->