-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.njk
More file actions
61 lines (48 loc) · 1.74 KB
/
Copy pathindex.njk
File metadata and controls
61 lines (48 loc) · 1.74 KB
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
{% import "fragments/post-card-list.njk" as postCardList %}
{% import "fragments/share.njk" as share %}
{% extends "pages/base.njk" %}
{% block title %}
Devel without a Cause - Blog
{% endblock %}
{% block socialImage %}{% endblock %}
{% block socialImageAlt %}{% endblock %}
{% block description %}
Personal blog about software, web tech, programming languages, game design,
and whatever else I feel unqualified to discuss.
{% endblock %}
{% block scripts %}
/scripts/index.js
{% endblock %}
{% block styles %}
./index.css
{% endblock %}
{% block content %}
{{ share.share(target=page.url, title=title) }}
<section>
<p>
This is my personal blog, where I rant, rave, complain, and exclaim
about everything that no one asked my opinion of.
</p>
<p>
I mostly post about software development, of the frontend web
variety in particular, but I will talk about anything I am
interested in. This ranges from programming languages, to game
design, to hot takes about the latest JavaScript framework.
</p>
<p>
<a href="/social/">Be social!</a> Reach out to send your thoughts,
feedback, praise, and (well-reasoned) rants.
</p>
<p>Can't decide? Check out various <a href="/series/">series</a> of
posts to help guide what might be interesting to you.</p>
</section>
<section id="posts-section">
<!-- List of all posts, most-recent first. -->
<h2>Posts</h2>
{% set posts = collections.posts
| sort(attr="date")
| reverse
%}
{% call postCardList.postCardList(posts) %}{% endcall %}
</section>
{% endblock %}