commit db380e2a56cb8ff312b93810dce1e2654a3348ee
parent 0dbbe531515273b9daf6d575e8c3e47e047e67b4
Author: David Eisinger <[email protected]>
Date: Sun, 30 Apr 2023 22:33:46 -0400
Fill out time note
Diffstat:
3 files changed, 33 insertions(+), 10 deletions(-)
diff --git a/content/notes/how-to-spend-time/index.md b/content/notes/how-to-spend-time/index.md
@@ -17,7 +17,13 @@ references:
file: www-artofmanliness-com-6lxmwc.txt
---
-{{<thumbnail graph1 "500x" />}}
+Broadly, three categories of productive activities:
+
+* **Chores** -- things you have to do to maintain stasis.
+ * [Sunday Firesides: To-Dos, the Rent We Pay For Living | The Art of Manliness][3]
+* **Improving the world** -- not in some grand sense necessarily, but activities that create lasting improvement: building things, fixing things, getting rid of things.
+ * [What Do You Want to Make Real in the World? — Anna Havron][4]
+* **Improving yourself** -- things you do to make you better at doing other things.
> Book smarts, street smarts. Learning by study, learning by doing.
> Read about it, apply it, see it in action, take that practical experience
@@ -29,3 +35,20 @@ references:
[1]: https://openlibrary.org/works/OL2777748W/The_Slight_Edge?edition=key%3A/books/OL9820911M
[2]: slight_edge_180.pdf
+[3]: https://www.artofmanliness.com/character/advice/sunday-firesides-to-dos-the-rent-we-pay-for-living/
+[4]: https://www.annahavron.com/blog/what-do-you-want-to-make-real-in-the-world
+
+{{<thumbnail graph1 "500x" />}}
+
+---
+
+Experiences:
+
+* Routine
+* Novel
+
+Leisure:
+
+* [Spend Exactly None Of Your Time Killing Time][5]
+
+[5]: https://deadspin.com/spend-exactly-none-of-your-time-killing-time-1831777904
diff --git a/themes/v2/assets/css/style.scss b/themes/v2/assets/css/style.scss
@@ -36,7 +36,7 @@ ul {
}
blockquote {
- margin: 0;
+ margin: 0 2ch 0 0;
font-style: italic;
&::before {
diff --git a/themes/v2/layouts/shortcodes/thumbnail.html b/themes/v2/layouts/shortcodes/thumbnail.html
@@ -7,13 +7,13 @@
{{ $img = $orig.Fill $options }}
{{ end }}
-<figure>
- <a href="{{ $orig.RelPermalink }}">
+<a href="{{ $orig.RelPermalink }}">
+ <figure>
<img src="{{ $img.RelPermalink }}" width="{{ $img.Width }}" height="{{ $img.Height }}">
- <figcaption>
- {{ with .Inner }}
+ {{ with .Inner }}
+ <figcaption>
{{ . }}
- {{ end }}
- </figcaption>
- </a>
-</figure>
+ </figcaption>
+ {{ end }}
+ </figure>
+</a>