Skip to content

Commit e70864c

Browse files
committed
Add more padding after posts
1 parent 3c5a023 commit e70864c

File tree

7 files changed

+187
-171
lines changed

7 files changed

+187
-171
lines changed

_pages/blog.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ permalink: /blog/
66

77
Mostly books but also some other things.
88

9-
{% for post in site.posts %}
10-
<article>
11-
<h2><a href="{{ post.url }}">{{ post.title | markdownify | remove: '<p>' | remove: '</p>' }}</a></h2>
12-
<p>{{ post.excerpt }}</p>
13-
<small>{{ post.date | date_to_string }}</small>
14-
</article>
15-
{% endfor %}
9+
<div class="post-list">
10+
{% for post in site.posts %}
11+
<article>
12+
<small>{{ post.date | date_to_string }}</small>
13+
<h2><a href="{{ post.url }}">{{ post.title | markdownify | remove: '<p>' | remove: '</p>' }}</a></h2>
14+
<p>{{ post.excerpt }}</p>
15+
</article>
16+
{% endfor %}
17+
</div>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
My personal website – built using Jekyll Minima theme with a few customizations.
1+
My personal website – built using Jekyll Minima theme with a few customizations.

_site/assets/main.css

Lines changed: 5 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: 165 additions & 161 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-02-09T15:33:33-05:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Devin Logan, Freelance Technical Writer and Editor</title><subtitle></subtitle><author><name> </name></author><entry><title type="html">Using an LLM to revamp my site</title><link href="http://localhost:4000/2025/02/09/jekyll.html" rel="alternate" type="text/html" title="Using an LLM to revamp my site" /><published>2025-02-09T00:00:00-05:00</published><updated>2025-02-09T00:00:00-05:00</updated><id>http://localhost:4000/2025/02/09/jekyll</id><content type="html" xml:base="http://localhost:4000/2025/02/09/jekyll.html"><![CDATA[<p>This is a meandering post about my personal experience using Claude (just the LLM I happened to be casually using already – I have no affiliation and I also didn’t spend any amount of time trying to pick the “best” LLM for my project) to redesign my site and my broader takeaways on using LLMs for technical projects like this.</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-02-09T15:48:22-05:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Devin Logan, Freelance Technical Writer and Editor</title><subtitle></subtitle><author><name> </name></author><entry><title type="html">Using an LLM to revamp my site</title><link href="http://localhost:4000/2025/02/09/jekyll.html" rel="alternate" type="text/html" title="Using an LLM to revamp my site" /><published>2025-02-09T00:00:00-05:00</published><updated>2025-02-09T00:00:00-05:00</updated><id>http://localhost:4000/2025/02/09/jekyll</id><content type="html" xml:base="http://localhost:4000/2025/02/09/jekyll.html"><![CDATA[<p>This is a meandering post about my personal experience using Claude (just the LLM I happened to be casually using already – I have no affiliation and I also didn’t spend any amount of time trying to pick the “best” LLM for my project) to redesign my site and my broader takeaways on using LLMs for technical projects like this.</p>
22

33
<p>This isn’t a tutorial on how to install Jekyll or design a site. There are plenty of resources for that, so I’m going to skip a lot of steps and gloss over some details.</p>
44

assets/main.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,9 @@ img {
3535
max-width: 200px;
3636
height: auto; /* Make images smaller to fit side by side */
3737
margin: 0; /* Remove the margin we set on regular images */
38+
}
39+
40+
/* Spacing after posts */
41+
.post-list article {
42+
margin-bottom: 2em;
3843
}

0 commit comments

Comments
 (0)