-
Notifications
You must be signed in to change notification settings - Fork 3
/
blog.html
57 lines (52 loc) · 1.82 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: page
title: The cocotb blog
# Ensure the blog overview page is regenerated in development mode when a new
# blog post is added.
regenerate: true
---
{% if site.paginate %}
{% assign posts = paginator.posts %}
{% else %}
{% assign posts = site.posts %}
{% endif %}
<h1 class="page-title">{{ page.title }}</h1>
{%- if posts.size > 0 -%}
{%- if page.list_title -%}
<h2 class="post-list-heading">{{ page.list_title }}</h2>
{%- endif -%}
<ul class="post-list list-unstyled">
{%- assign date_format = site.blog.date_format | default: "%b %-d, %Y" -%}
{%- for post in posts -%}
<li class="mb-5">
<span class="post-meta text-muted">{{ post.date | date: date_format }}</span>
<h3>
<a class="post-link text-decoration-none" href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</h3>
{%- if site.excerpts.show -%}
{%- if site.excerpts.auto_truncate -%}{{ post.excerpt | truncatewords: 32 }}{%- else -%}{{ post.excerpt }}{%- endif %}
<a href="{{ post.url | relative_url }}">Read more</a>
{%- endif -%}
</li>
{%- endfor -%}
</ul>
{% if site.paginate %}
<div class="pager">
<ul class="pagination">
{%- if paginator.previous_page %}
<li><a href="{{ paginator.previous_page_path | relative_url }}" class="previous-page">{{ paginator.previous_page }}</a></li>
{%- else %}
<li><div class="pager-edge">•</div></li>
{%- endif %}
<li><div class="current-page">{{ paginator.page }}</div></li>
{%- if paginator.next_page %}
<li><a href="{{ paginator.next_page_path | relative_url }}" class="next-page">{{ paginator.next_page }}</a></li>
{%- else %}
<li><div class="pager-edge">•</div></li>
{%- endif %}
</ul>
</div>
{%- endif %}
{%- endif -%}