-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblog.html
79 lines (63 loc) · 2.21 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
layout: default
title: Blog
pagination:
enabled: true
---
<div class="container">
<div class="row g-5">
<div class="col-md-8">
<header class="blog-header py-3">
<h3 class="pb-4 mb-4 fst-italic border-bottom">
Propodeum
</h3>
</header>
{% for post in paginator.posts %}
<div class="container">
<article class="m-2">
<h2>{{ post.title }}</h2>
<p>{{ post.date}} by <a href="#">{{ post.author }} </a></p>
{{ post.excerpt }}
<a class="btn btn-primary mb-4" href="{{post.url}}">Continue reading...</a>
</article>
</div>
{% endfor %}
<nav class="my-4 container" aria-label="Pagination">
{% if paginator.previous_page %}
<a class="btn btn-outline-primary" href="{{ paginator.previous_page_path }}">Newer</a>
{% else %}
<span class="btn btn-outline-secondary disabled">Newer</span>
{% endif %}
<span class="page_number ">
Page: {{page.pagination_info.curr_page}} of {{page.pagination_info.total_pages}}
</span>
{% if paginator.next_page %}
<a class="btn btn-outline-primary" href="{{ paginator.next_page_path }}" >Older</a>
{% else %}
<span class="btn btn-outline-secondary disabled">Older</span>
{% endif %}
</nav>
</div>
<div class="col-md-4">
<div class="position-sticky" style="top: 2rem;">
<div class="p-4 mb-3 bg-light rounded">
<h4 class="fst-italic">About</h4>
<p class="mb-0">A blog with musings from the Species File Group and collaborators. Want to contribute, or a link-out? Let's talk, ping us!<br/><br/>
Why <i>Propodeum</i>? See <a href="/announce/2022/01/20/welcome-to-propodeum.html">our first post</a>.
</p>
</div>
<div class="p-4 mb-3 bg-light rounded">
<h4 class="fst-italic">Other SFG blogs</h4>
<p class="mb-0">Global Names shares news and posts at <a href="https://globalnames.org/news/">https://globalnames.org/news/</a>.
</p>
</div>
<div class="p-4">
<h4 class="fst-italic">Archives</h4>
<ol class="list-unstyled mb-0">
<li><i>Not yet!</i></li>
</ol>
</div>
</div>
</div>
</div>
</div>