diff --git a/content/notes/how-to-spend-time/index.md b/content/notes/how-to-spend-time/index.md
index c42007a..c462e3c 100644
--- a/content/notes/how-to-spend-time/index.md
+++ b/content/notes/how-to-spend-time/index.md
@@ -17,6 +17,8 @@ references:
file: www-artofmanliness-com-6lxmwc.txt
---
+{{}}
+
> Book smarts, street smarts. Learning by study, learning by doing.
> Read about it, apply it, see it in action, take that practical experience
> back to your reading, deepen your understanding, take that deeper
diff --git a/themes/v2/assets/css/style.scss b/themes/v2/assets/css/style.scss
index e31b320..c44de6e 100644
--- a/themes/v2/assets/css/style.scss
+++ b/themes/v2/assets/css/style.scss
@@ -66,6 +66,10 @@ sup {
line-height: 0;
}
+figure {
+ margin: 0;
+}
+
.nowrap {
white-space: nowrap;
}
@@ -74,13 +78,9 @@ sup {
display: flex;
gap: 1em;
- figure {
- margin: 0;
-
- img {
- width: 100%;
- height: auto;
- }
+ img {
+ width: 100%;
+ height: auto;
}
}
diff --git a/themes/v2/layouts/shortcodes/thumbnail.html b/themes/v2/layouts/shortcodes/thumbnail.html
index ccfcb8b..462a1db 100644
--- a/themes/v2/layouts/shortcodes/thumbnail.html
+++ b/themes/v2/layouts/shortcodes/thumbnail.html
@@ -1,6 +1,11 @@
{{ $orig := .Page.Resources.GetMatch (printf "*%s*" (.Get 0)) }}
{{ $options := .Get 1 }}
-{{ $img := $orig.Fill $options }}
+
+{{ $img := $orig.Resize $options }}
+
+{{ if findRE `\d+x\d+` $options }}
+ {{ $img = $orig.Fill $options }}
+{{ end }}