diff --git a/src/content/blog/my-first-blog-post.md b/src/content/blog/my-first-blog-post.md index c960786..d76bae3 100644 --- a/src/content/blog/my-first-blog-post.md +++ b/src/content/blog/my-first-blog-post.md @@ -2,6 +2,7 @@ title: "Something New is Brewing" date: 2022-03-23 draft: false +featured_image: "/Images/techcrunch-gen-art.jpg" --- I created Homebrew nearly 13 years ago out of sheer necessity. I found the tooling available to developers at the time haphazard and difficult to tease into shape. After complaining about it at the pub one evening, I was met with an exasperated “Max, quit whining and do something about it”. So I did. (Thanks Jono). diff --git a/src/layouts/_default/list.html b/src/layouts/_default/list.html index 220f55b..b28d2f5 100644 --- a/src/layouts/_default/list.html +++ b/src/layouts/_default/list.html @@ -7,7 +7,7 @@ {{ partial "navbar.html" . }} -
+
@@ -22,14 +22,18 @@
{{ range .Pages }} -
-
- {{ .Title }}
- {{ .Date.Format "2006-01-02" }} - {{ .Content }} +
+ +
+ {{ if .Params.featured_image }} + {{ .Title }} + {{ end }} + {{ .Title }}
+ {{ .Date.Format "2006-01-02" }} + {{ .Content }} +
+
- -
{{ end }} Back to home
@@ -51,6 +55,15 @@ -webkit-box-orient: vertical; } + .featured-image { + width: 100%; /* Adjust the width as needed */ + height: 100px; /* Maintain the image's aspect ratio */ + } + + .blog-listing{ + border: 1px solid #949494; + } +