Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,10 @@ favicon = "favicon.ico"
meta_title = "Your OS, but Containers!"
meta_description = "bootc builds operating systems using containerization principles"
footer = ""

# Author definitions for blog posts
# Use the key (e.g., "jeckersb") as the author value in blog post frontmatter
[extra.authors]

[extra.authors.jeckersb]
name = "John Eckersberg"
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title = "Containers: pitfalls of incomplete tar archives"
date = 2025-12-15
slug = "2025-dec-15-blog-containers-pitfalls-of-incomplete-tar-archives"

[extra]
author = "jeckersb"
+++

# Containers: pitfalls of incomplete tar archives
Expand Down
8 changes: 8 additions & 0 deletions themes/juice/sass/juice.scss
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,14 @@ main {
overflow: auto;
}

.blog-meta {
color: var(--secondary-text-color);
font-size: 0.9rem;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 1px solid #e0e0e0;
}

footer {
padding: 50px;
display: flex;
Expand Down
7 changes: 7 additions & 0 deletions themes/juice/templates/blog-page.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{% import "_macros.html" as macros %}
{% import "common.html" as common %}
{% extends "base.html" %}

{% block header %}
Expand All @@ -9,5 +10,11 @@

{% block content %}
<div class="heading-text">{{ page.description }}</div>
<div class="blog-meta">
<span class="blog-date">{{ page.date | date(format="%B %d, %Y") }}</span>
{% if page.extra.author %}
<span class="blog-author"> by {{ common::author(id=page.extra.author) }}</span>
{% endif %}
</div>
{{ page.content | safe }}
{% endblock content %}