diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro index fc3d0a7..a089e6f 100644 --- a/src/pages/blog/index.astro +++ b/src/pages/blog/index.astro @@ -8,7 +8,6 @@ const posts = (await getCollection('posts')).sort((a, b) => b.data.date.getTime( {posts.map((post) => ( -

{post.data.title}

@@ -16,8 +15,5 @@ const posts = (await getCollection('posts')).sort((a, b) => b.data.date.getTime(

{post.data.excerpt}Read the Rest...

-
-
-
))}
diff --git a/src/pages/index.astro b/src/pages/index.astro index 6cfc910..e762896 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -16,7 +16,6 @@ const posts = (await getCollection('posts')).sort((a, b) => b.data.date.getTime( {posts.map((post) => ( -

{post.data.title}

@@ -27,9 +26,6 @@ const posts = (await getCollection('posts')).sort((a, b) => b.data.date.getTime(

{post.data.excerpt}Read the Rest...

-
-
-
))}
diff --git a/src/styles/global.css b/src/styles/global.css index 3a9b5f1..64b6e20 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -1144,8 +1144,12 @@ h3.arc-src { .post, .hentry, .no-results { + /* flow-root contains the floated thumbnail. Without it the image overflows the item + and eats the margin below, so the gap collapses whenever the excerpt is shorter + than the image -- which it is at full width, unlike the theme's 650px column. */ + display: flow-root; /* Theme default was 20px; widened to give listing items clearer separation. */ - margin-bottom: 50px; + margin-bottom: 60px; }