-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 1.64 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
---
layout: default
title: The C++ Micro Services Blog
---
{% include JB/setup %}
{% for post in paginator.posts %}
<div class="full">
<h1 class="entry-title">
<a href="{{ post.url }}" title="{{ post.title }}" rel="bookmark">{{ post.title }}</a>
</h1>
<div class="entry-content full-content">
{{ post.content | truncatewords: 75 }}
<p><a href="{{ post.url }}">Read more...</a></p>
<div class="clear"></div>
</div>
<p class="alt-font tight">
Posted in
{% for category in post.categories %}
<a href="/categories/{{ category }}" title="{{ category }}" rel="category tag">{{ category }}</a>
{% endfor %}
</p>
{% if post.comments != false %}
<p class="comments-link">
<a href='{{post.url}}#disqus_thread'>Comments</a>
</p>
{% endif %}
<p class="by-line">
<span class="date full-date">
<abbr class="published" title="{{ post.date }}">{{ post.date | date_to_string }}</abbr>
</span>
</p>
<div class="clear"></div>
</div>
<div class="rule"><hr/></div>
{% endfor %}
<div class="pagination">
<ul>
{% if page.previous %}
<li class="prev"><a href="{{ BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}">← Previous</a></li>
{% else %}
<li class="prev disabled"><a>← Previous</a></li>
{% endif %}
<li><a href="{{ BASE_PATH }}{{ site.JB.archive_path }}">Archive</a></li>
{% if page.next %}
<li class="next"><a href="{{ BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}">Next →</a></li>
{% else %}
<li class="next disabled"><a>Next →</a>
{% endif %}
</ul>
</div>