forked from synereo/blog.synereo.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (47 loc) · 1.48 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
---
layout: default
---
<div class="posts">
{% for post in paginator.posts %}
<div class="row post">
<div class="col-md-2">
<div class="post-date">
<span class="day">{{ post.date | date: "%-d" }}</span>
<span class="month-year">{{ post.date | date: "%b %Y" }}</span>
</div>
</div>
<div class="col-md-8">
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
{% if post.author %}
<div class="meta">
{% if post.guest %}
<img src="/img/team/guest-{{ post.guest }}.png">
{% else %}
<img src="/img/team/{{ post.author|slugify }}.jpg">
{% endif %}
<span>{{ post.author }}</span>
</div>
{% endif %}
<!-- {% if post.cover_image %}
<div class="cover">
<img src="{{ post.cover_image }}">
</div>
{% endif %} -->
<div class="content">
{{ post.content }}
</div>
</div>
</div>
{% endfor %}
</div>
<div class="post-nav clearfix">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="prev">« Newer Posts</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Older Posts »</a>
{% endif %}
</div>
<!-- <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p> -->