Skip to content

Commit 9374d10

Browse files
committed
update with rendering
1 parent c306ee2 commit 9374d10

5 files changed

Lines changed: 15 additions & 21 deletions

File tree

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,18 @@ For each new blog post:
126126
**Discussions tab is missing in your repository**
127127
- Enable Discussions in your repository Settings (see step 1 above)
128128

129+
### Add images to posts
130+
1. Save images to `assets/images/` using slug-case filenames (lowercase, hyphens, no spaces):
131+
- **Good:** `hydromechanical-slide.png`
132+
- **Bad:** `ChatGPT Image Jan 29, 2026, 06_39_53 AM.png`
133+
2. Reference in posts with the `relative_url` filter:
134+
```html
135+
<figure style="text-align:center; margin: 2em 0;">
136+
<img src="{{ '/assets/images/your-image.png' | relative_url }}" alt="Description" style="max-width:100%; border-radius:6px;">
137+
<figcaption style="font-size:0.9em; color:#666; margin-top:0.5em;">Caption text.</figcaption>
138+
</figure>
139+
```
140+
3. Verify locally with `bundle exec jekyll serve` before pushing.
141+
129142
### Update styling
130143
Edit `assets/styles.css`.

_posts/2026-02-20-agentic-earth-update.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

_posts/2026-02-26-welcome.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

_posts/2026-03-03-introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ I prompted: *generate an image of this slide.*
2121
What came back was this:
2222

2323
<figure style="text-align:center; margin: 2em 0;">
24-
<img src="/assets/images/ChatGPT Image Jan 29, 2026, 06_39_53 AM.png" alt="One Hydromechanical System, Two Seismological Traditions — a conceptual slide contrasting environmental seismology and earthquake seismology around shared hydromechanical state variables" style="max-width:100%; border-radius:6px;">
24+
<img src="{{ '/assets/images/hydromechanical-slide.png' | relative_url }}" alt="One Hydromechanical System, Two Seismological Traditions — a conceptual slide contrasting environmental seismology and earthquake seismology around shared hydromechanical state variables" style="max-width:100%; border-radius:6px;">
2525
<figcaption style="font-size:0.9em; color:#666; margin-top:0.5em;">Generated in a single prompt by ChatGPT, after months of accumulated context from my uploaded papers and proposals.</figcaption>
2626
</figure>
2727

@@ -75,7 +75,7 @@ Foundation models hallucinate. They produce confident, cleanly formatted output
7575

7676
The models also guess when they do not have the knowledge in training or in context (hallucination). They do not flag uncertainty in domain-specific physics. They do not say, "I am unsure whether this P-wave polarity pattern is correct for a thrust mechanism." They present it. You verify it or you accept it uncritically. Maybe this will change in the future.
7777

78-
This is why domain expertise has become *more* important in my workflow, not less. The AI accelerates production, and I correct it when needed. Every post in this series will include a section on where the AI failed or where I overrode it. T
78+
This is why domain expertise has become *more* important in my workflow, not less. The AI accelerates production, and I correct it when needed. Every post in this series will include a section on where the AI failed or where I overrode it.
7979

8080
## The Pattern I Am Observing
8181

1.6 MB
Loading

0 commit comments

Comments
 (0)