-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwriting.html
More file actions
43 lines (42 loc) · 1.55 KB
/
writing.html
File metadata and controls
43 lines (42 loc) · 1.55 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
---
title: Articles
description: "Technical articles and project write-ups from conaman."
nav_key: writing
permalink: /writing/
---
<section class="page-hero">
<p class="section-eyebrow">Articles</p>
<h1>Technical articles.</h1>
<p class="page-intro">The articles here are meant to be useful reference material: build notes, source-level observations, and project introductions that make implementation choices easier to follow later.</p>
</section>
<section class="section">
{% if site.posts.size == 0 %}
<article class="panel">
<p>No articles have been published yet.</p>
</article>
{% else %}
<div class="writing-grid">
{% for post in site.posts %}
<article class="writing-card">
<div class="writing-card__top">
<div>
<p class="card-eyebrow">{{ post.date | date: "%Y" }}</p>
<h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
</div>
</div>
<div class="writing-card__meta">
<span>{{ post.date | date: "%B %-d, %Y" }}</span>
{% if post.tags and post.tags.size > 0 %}
<span>·</span>
<span>{{ post.tags | join: " / " }}</span>
{% endif %}
</div>
<p>{{ post.summary | default: post.excerpt | strip_html | strip_newlines | truncate: 190 }}</p>
<div class="card-links">
<a class="text-link" href="{{ post.url | relative_url }}">Read article</a>
</div>
</article>
{% endfor %}
</div>
{% endif %}
</section>