diff --git a/src/layouts/_default/list.html b/src/layouts/_default/list.html index e82911e..b242810 100644 --- a/src/layouts/_default/list.html +++ b/src/layouts/_default/list.html @@ -19,19 +19,22 @@
-
+
+

Recent Posts

{{ range .Pages }} -
+
-
+
{{ if .Params.featured_image }} - {{ .Title }} + {{ end }} -

{{ .Title }}

- {{ .Date.Format "2006-01-02" }} - {{ .Content }} -
+
+

{{ .Title }}

+ {{ .Date.Format "2006-01-02" }} + {{ .Content }} +
+
{{ end }} @@ -56,12 +59,19 @@ } .featured-image { - width: 100%; /* Adjust the width as needed */ - height: 100px; /* Maintain the image's aspect ratio */ + width: 100%; + height: 100px; + background-size: cover; + background-position: center; } .blog-listing{ border: 1px solid #949494; + transition: 0.2s ease-in-out; + } + + .blog-listing:hover{ + background-color: #252525 !important; }