-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaged.njk
40 lines (38 loc) · 1.56 KB
/
paged.njk
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
---
pagination:
data: collections.posts
size: 12
alias: posts
reverse: true
layout: layouts/home.njk
permalink: /{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}
---
{% if pagination.pageNumber == 0 %}
<div class="intro">
<p>This site is a record of <a href="https://twitter.com/thedamon">my</a> indie university radio thing.</p>
<p>Radio Slipstream broadcast in various timeslots on 93.3 CFMU — McMaster's campus station from 2004-2007, then continued as increasingly sporadic self-released episodes/mixes. <a href="/about">history.</a></p>
<p>January 2022: It's been years since anything has happened here, but I've been tinkering away at playlists for a while and I'm now posting them here via Spotify playlists under <em>“The Slip”</em>, because <em>radio</em> is dead and <em>stream</em>ing is redundant. <a href="https://open.spotify.com/playlist/65iUJX48FW11aNDIyU3USW?si=56fd7906dfff4fc3">All the lists combined</a>.</p>
</div>
{% endif %}
{% set postslist = posts %}
<div class="post-list">
{% include "postsinline.njk" %}
</div>
<div class="page-nav post-footer">
<p class="prev">
{% if pagination.previousPageLink %}
<a class="previous cta-sm cta-nav" href="{{ pagination.href.previous | url }}">
<span>Newer posts</span>
<span class="arw">←</span>
</a>
{% endif %}
</p>
{% if pagination.nextPageLink %}
<p class="next">
<a class="next cta-sm cta-nav" href="{{ pagination.href.next | url }}">
<span>Older posts</span>
<span class="arw">→</span>
</a>
</p>
{% endif %}
</div>