Skip to content

Commit 6e6cebb

Browse files
committed
Add updated field
1 parent e0c6a5e commit 6e6cebb

File tree

7 files changed

+158
-39
lines changed

7 files changed

+158
-39
lines changed

_pages/blog.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ permalink: /blog/
1010
{% for post in pinned_posts %}
1111
<article class="pinned-post">
1212
<span class="pinned-label">📌 Pinned</span>
13-
<small>{{ post.date | date_to_string }}</small>
13+
<small>
14+
Published: {{ post.date | date_to_string }}
15+
{% if post.updated %}
16+
<br><span class="updated-date">Updated: {{ post.updated | date_to_string }}</span>
17+
{% endif %}
18+
</small>
1419
<h2><a href="{{ post.url }}">{{ post.title | markdownify | remove: '<p>' | remove: '</p>' }}</a></h2>
1520
<p>{{ post.excerpt }}</p>
1621
{% if post.tags.size > 0 %}
@@ -23,12 +28,16 @@ permalink: /blog/
2328
</article>
2429
{% endfor %}
2530

26-
2731
<!-- Regular posts (excluding pinned ones) -->
2832
{% assign regular_posts = site.posts | where: "pinned", nil %}
2933
{% for post in regular_posts %}
3034
<article>
31-
<small>{{ post.date | date_to_string }}</small>
35+
<small>
36+
Published: {{ post.date | date_to_string }}
37+
{% if post.updated %}
38+
<br><span class="updated-date">Updated: {{ post.updated | date_to_string }}</span>
39+
{% endif %}
40+
</small>
3241
<h2><a href="{{ post.url }}">{{ post.title | markdownify | remove: '<p>' | remove: '</p>' }}</a></h2>
3342
<p>{{ post.excerpt }}</p>
3443
{% if post.tags.size > 0 %}
@@ -40,4 +49,4 @@ permalink: /blog/
4049
{% endif %}
4150
</article>
4251
{% endfor %}
43-
</div>
52+
</div>

_posts/2025-02-09-jekyll.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
layout: post
33
title: "Using an LLM to revamp my site"
44
date: 2025-02-09
5+
updated: 2025-06-06
56
tags: ai tech
67
pinned: true
78
---

_site/assets/main.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/assets/main.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/blog/index.html

Lines changed: 130 additions & 33 deletions
Large diffs are not rendered by default.

_site/feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2025-06-06T15:15:03-04:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Devin Logan, Technical Writer and Editor</title><subtitle></subtitle><author><name> </name></author><entry><title type="html">Getting into technical writing: a primer</title><link href="http://localhost:4000/2025/05/23/primer.html" rel="alternate" type="text/html" title="Getting into technical writing: a primer" /><published>2025-05-23T00:00:00-04:00</published><updated>2025-05-23T00:00:00-04:00</updated><id>http://localhost:4000/2025/05/23/primer</id><content type="html" xml:base="http://localhost:4000/2025/05/23/primer.html"><![CDATA[<p>Over the past few years I’ve talked to a number of people who are interested in getting into the technical writing field. After years of meaning to do this, I finally took some time to write up the thoughts and resources I typically share with people looking to get into the field. This is far from a comprehensive guide and notably doesn’t include much specific resume or cover letter advice.</p>
1+
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2025-06-06T15:21:00-04:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Devin Logan, Technical Writer and Editor</title><subtitle></subtitle><author><name> </name></author><entry><title type="html">Getting into technical writing: a primer</title><link href="http://localhost:4000/2025/05/23/primer.html" rel="alternate" type="text/html" title="Getting into technical writing: a primer" /><published>2025-05-23T00:00:00-04:00</published><updated>2025-05-23T00:00:00-04:00</updated><id>http://localhost:4000/2025/05/23/primer</id><content type="html" xml:base="http://localhost:4000/2025/05/23/primer.html"><![CDATA[<p>Over the past few years I’ve talked to a number of people who are interested in getting into the technical writing field. After years of meaning to do this, I finally took some time to write up the thoughts and resources I typically share with people looking to get into the field. This is far from a comprehensive guide and notably doesn’t include much specific resume or cover letter advice.</p>
22

33
<p>I worked as a technical writer at Google for almost 7 years. (And wrote <a href="https://blog.google/inside-google/life-at-google/sowhat-does-technical-writer-actually-do/">this blog post</a> for Google’s The Keyword back in 2021, which captured my own journey into technical writing.) During that time, I interviewed a lot of candidates, including some people who were switching careers. Now, I’m a freelance technical writer and have spent a lot of time refining my resume and applying to jobs.</p>
44

assets/main.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,10 @@ img {
101101
font-style: italic;
102102
display: block;
103103
margin-bottom: 0.5rem;
104+
}
105+
106+
/* Updated date styling */
107+
.updated-date {
108+
font-weight: bold;
109+
font-style: italic;
104110
}

0 commit comments

Comments
 (0)