jekyll-bear-theme 0.1.6 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +37 -1
- data/_config.yml +3 -2
- data/_data/life-in-weeks.yml +498 -0
- data/_includes/footer-post.html +2 -4
- data/_includes/footer.html +1 -4
- data/_includes/header.html +20 -12
- data/_layouts/life-in-weeks.html +86 -0
- data/assets/images/JBBlog.png +0 -0
- data/assets/images/JBHome.png +0 -0
- data/assets/images/JBLife.png +0 -0
- data/assets/images/JBLongForm.png +0 -0
- data/assets/images/JBPoetry.png +0 -0
- data/assets/style.css +374 -232
- metadata +35 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ecc530b679d4282ee1b024826ab66867981de210b25bc59772758990f1f9fa3
|
4
|
+
data.tar.gz: 89b663c633e425b61c4ec0c25de78dc6082027bc89c0ecbe8a435c49ac8786bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 821809b58d18a4f4f5c2af63725552a224cb0cd8b0419b5d8641a9697a7902aed86013601a818518116796f76252b3b05fa17ce543779fea3a659039317d2683
|
7
|
+
data.tar.gz: 276a81deb6a733f2a10c891bb111e4a821b3af99e2fa1dd354b5e9f77df56ff5d3aa307fe7f4d185082a188a61ad21aa8eaf0dcc6b3c18d29c1e6cbfcf17d6c3
|
data/README.md
CHANGED
@@ -16,14 +16,24 @@ This is a port of it's theme to Jekyll, with some tweaks. So you can use GitHub
|
|
16
16
|
- Quick, *15 minute* setup
|
17
17
|
- Gallery view for your images
|
18
18
|
- Code highlighting
|
19
|
+
- **Life in Weeks visualization** - Interactive timeline of your life events
|
19
20
|
|
20
21
|
## Screenshots
|
21
22
|
|
23
|
+
### Home
|
22
24
|

|
25
|
+
|
26
|
+
### Blog
|
23
27
|

|
28
|
+
|
29
|
+
### Long Form
|
24
30
|

|
25
|
-

|
26
31
|
|
32
|
+
### Poetry
|
33
|
+

|
34
|
+
|
35
|
+
### Life
|
36
|
+

|
27
37
|
|
28
38
|
## Installation
|
29
39
|
|
@@ -49,6 +59,8 @@ Or install it yourself as:
|
|
49
59
|
|
50
60
|
## Usage
|
51
61
|
|
62
|
+
### Basic Setup
|
63
|
+
|
52
64
|
Create a new repository for your website (if necessary)
|
53
65
|
```jekyll
|
54
66
|
jekyll new my_website
|
@@ -61,6 +73,7 @@ Copy over the following content from this repository, to serve as a base setup
|
|
61
73
|
/_my_tags -> Where you will define your tags, if you need to add anything new
|
62
74
|
blog.md -> Homepage for your blog
|
63
75
|
index.md -> Website homepage
|
76
|
+
life.md -> Life in weeks visualization page (optional)
|
64
77
|
404.html -> When a page is not available
|
65
78
|
```
|
66
79
|
|
@@ -75,6 +88,29 @@ in the `_config.yml` present in this repository to your website repository `_con
|
|
75
88
|
Any new links you want to add to the navbar goes here, towards the end.
|
76
89
|
This also defines the bits about tags and filtering.
|
77
90
|
|
91
|
+
### Life in Weeks Feature
|
92
|
+
|
93
|
+
To use the new Life in Weeks visualization:
|
94
|
+
|
95
|
+
1. **Create your life data**: Copy `_data/life-in-weeks.yml` and customize it with your own life events
|
96
|
+
2. **Add the life page**: Copy `life.md` and update the `start_date` and `end_year` parameters
|
97
|
+
3. **Configure navigation**: The "Life" link will automatically appear in your navigation
|
98
|
+
|
99
|
+
#### Life Data Format
|
100
|
+
|
101
|
+
Events in `_data/life-in-weeks.yml` follow this structure:
|
102
|
+
|
103
|
+
```yaml
|
104
|
+
'YYYY-MM-DD':
|
105
|
+
- name: "Event name"
|
106
|
+
desc: "Optional description shown in tooltip"
|
107
|
+
category: "category_name"
|
108
|
+
link: "https://optional-link.com"
|
109
|
+
tags: ["tag1", "tag2"]
|
110
|
+
```
|
111
|
+
|
112
|
+
### Blog Post Types
|
113
|
+
|
78
114
|
There should be 3 kinds of blog posts in the posts folder, an example of each type you can use:
|
79
115
|
|
80
116
|
- long-form reading
|
data/_config.yml
CHANGED
@@ -56,12 +56,13 @@ exclude:
|
|
56
56
|
exclude: [vendor]
|
57
57
|
|
58
58
|
Blog: /blog
|
59
|
+
Life: /life
|
59
60
|
|
60
61
|
# Add general links to site pages here
|
61
62
|
links:
|
62
|
-
Resume: /assets/resume.pdf
|
63
|
+
# Resume: /assets/resume.pdf
|
63
64
|
|
64
65
|
|
65
66
|
# Add links for more focus here
|
66
67
|
special_links:
|
67
|
-
"Search": https://duckduckgo.com
|
68
|
+
# "Search": https://duckduckgo.com
|
@@ -0,0 +1,498 @@
|
|
1
|
+
'1976-05-28':
|
2
|
+
- name: "I enter the world"
|
3
|
+
desc: "Born at Hoag Hospital in Newport Beach California. 1976 was the year of the Dragon, Play That Funky Music and Rocky were top of the charts, and Gerald Ford was president. I'm a gemini, which of course doesn't mean anything. My mom collected bicentennial quarters to commemorate my birth year, since it was also the 200th birthday of America."
|
4
|
+
category: "self"
|
5
|
+
|
6
|
+
'1978-10-29':
|
7
|
+
- name: "My sister, Kristy, is born"
|
8
|
+
category: "family"
|
9
|
+
tags: ['kristy']
|
10
|
+
|
11
|
+
'1982-08-25':
|
12
|
+
- name: "I start at Glenmeade Elementary"
|
13
|
+
category: "school"
|
14
|
+
|
15
|
+
|
16
|
+
'1984-08-01':
|
17
|
+
- name: "We move to Irvine"
|
18
|
+
category: "family"
|
19
|
+
|
20
|
+
'1984-09-02':
|
21
|
+
- name: "I transfer to Stonecreek Elementary for 3rd grade"
|
22
|
+
category: "school"
|
23
|
+
|
24
|
+
'1988-09-10':
|
25
|
+
- name: "I start 7th grade at Lakeside Middle"
|
26
|
+
category: "school"
|
27
|
+
|
28
|
+
'1990-09-02':
|
29
|
+
- name: "I start at Woodbridge High School"
|
30
|
+
category: "school"
|
31
|
+
|
32
|
+
'1993-10-30':
|
33
|
+
- name: "💔 My father passes away"
|
34
|
+
desc: "From complications with treatment for lung cancer."
|
35
|
+
category: "family"
|
36
|
+
tags: ["dad"]
|
37
|
+
|
38
|
+
'1994-05-15':
|
39
|
+
- name: "I graduate from Woodbridge High School"
|
40
|
+
category: "school"
|
41
|
+
|
42
|
+
'1994-08-07':
|
43
|
+
- name: "🚚 I move to Berkeley, California"
|
44
|
+
category: "self"
|
45
|
+
|
46
|
+
'1995-08-01':
|
47
|
+
- name: "🚚 I move to Seattle, Washington"
|
48
|
+
category: "self"
|
49
|
+
|
50
|
+
'1994-08-19':
|
51
|
+
- name: "First day of college at UC Berkeley"
|
52
|
+
category: "school"
|
53
|
+
|
54
|
+
'1995-09-25':
|
55
|
+
- name: "First day at UW, starting the sophomore year"
|
56
|
+
desc: "Switching from genetic biology to creative writing!"
|
57
|
+
category: "school"
|
58
|
+
|
59
|
+
'1998-06-13':
|
60
|
+
- name: "I graduate from UW with a degree in creative writing"
|
61
|
+
category: "school"
|
62
|
+
|
63
|
+
'1998-11-02':
|
64
|
+
- name: "My first day at Amazon, doing night shift customer service"
|
65
|
+
category: "work"
|
66
|
+
tags: ["technology"]
|
67
|
+
|
68
|
+
'1999-10-03':
|
69
|
+
- name: "I write my first blog post on Live Journal"
|
70
|
+
category: "writing"
|
71
|
+
|
72
|
+
'2000-01-01':
|
73
|
+
- name: "Y2K"
|
74
|
+
desc: "The world doesn't end. Wee!"
|
75
|
+
category: "world"
|
76
|
+
tags: ["technology"]
|
77
|
+
|
78
|
+
'2000-05-23':
|
79
|
+
- name: "I become a 'web developer' and learn to code on the job"
|
80
|
+
category: "work"
|
81
|
+
tags: ["technology"]
|
82
|
+
|
83
|
+
'2000-06-17':
|
84
|
+
- name: "Kharis and I get married"
|
85
|
+
category: "relationships"
|
86
|
+
tags: ["kharis"]
|
87
|
+
|
88
|
+
'2001-09-11':
|
89
|
+
- name: "September 11th"
|
90
|
+
category: "world"
|
91
|
+
tags: ["politics"]
|
92
|
+
|
93
|
+
'2002-11-30':
|
94
|
+
- name: "I complete my first National Novel Writing Month challenge"
|
95
|
+
category: "writing"
|
96
|
+
tags: ["man versus himself"]
|
97
|
+
|
98
|
+
'2003-03-20':
|
99
|
+
- name: "The Iraq War starts"
|
100
|
+
category: "world"
|
101
|
+
tags: ["politics"]
|
102
|
+
|
103
|
+
'2003-08-05':
|
104
|
+
- name: "I self-publish my NaNoWriMo novel, Man Versus Himself"
|
105
|
+
category: "writing"
|
106
|
+
link: "https://amzn.to/2GJ8ASw"
|
107
|
+
tags: ["man versus himself"]
|
108
|
+
|
109
|
+
'2004-09-13':
|
110
|
+
- name: "Kharis and I officially divorced"
|
111
|
+
desc: "Separated in February 2004."
|
112
|
+
category: "relationships"
|
113
|
+
tags: ["kharis"]
|
114
|
+
|
115
|
+
'2004-09-01':
|
116
|
+
- name: "The Robot Co-op is founded"
|
117
|
+
category: "work"
|
118
|
+
tags: ["robot co-op"]
|
119
|
+
|
120
|
+
'2004-11-01':
|
121
|
+
- name: "I buy my first place: a condo in Belltown"
|
122
|
+
category: "self"
|
123
|
+
tags: ["self", "home"]
|
124
|
+
|
125
|
+
'2005-01-01':
|
126
|
+
- name: "43things.com launches"
|
127
|
+
category: "work"
|
128
|
+
tags: ["robot co-op"]
|
129
|
+
|
130
|
+
'2006-05-28':
|
131
|
+
- name: "🎂 I turn 30: Higher highs and lower lows"
|
132
|
+
category: "birthday"
|
133
|
+
link: "https://busterbenson.com/2006/05/31/higher-highs-lower-lows"
|
134
|
+
tags: ["annual review"]
|
135
|
+
|
136
|
+
'2006-09-06':
|
137
|
+
- name: "I legally change my name to Buster Butterfiled McLeod"
|
138
|
+
category: "self"
|
139
|
+
|
140
|
+
'2006-12-31':
|
141
|
+
- name: "McLeod Residence's New Year's Eve opening party"
|
142
|
+
category: "work"
|
143
|
+
tags: ["mcleod residence"]
|
144
|
+
|
145
|
+
- name: "I meet Kellianne"
|
146
|
+
category: "relationships"
|
147
|
+
tags: ["kellianne"]
|
148
|
+
|
149
|
+
'2007-05-28':
|
150
|
+
- name: "🎂 I turn 31: Double down"
|
151
|
+
category: "birthday"
|
152
|
+
link: "https://busterbenson.com/2007/05/29/double-down"
|
153
|
+
tags: ["annual review"]
|
154
|
+
|
155
|
+
'2007-06-29':
|
156
|
+
- name: "The first iPhone is released"
|
157
|
+
category: "world"
|
158
|
+
tags: ["technology"]
|
159
|
+
|
160
|
+
'2008-05-28':
|
161
|
+
- name: "🎂 I turn 32: No problem"
|
162
|
+
category: "birthday"
|
163
|
+
link: "https://busterbenson.com/2008/05/27/no-problem"
|
164
|
+
tags: ["annual review"]
|
165
|
+
|
166
|
+
'2008-09-15':
|
167
|
+
- name: "Financial crisis caused by subprime meltdown"
|
168
|
+
category: "world"
|
169
|
+
tags: ["politics"]
|
170
|
+
|
171
|
+
'2008-10-04':
|
172
|
+
- name: "Kellianne and I get married"
|
173
|
+
category: "relationships"
|
174
|
+
tags: ["kellianne"]
|
175
|
+
|
176
|
+
'2008-10-31':
|
177
|
+
- name: "McLeod Residence's last day in business"
|
178
|
+
category: "work"
|
179
|
+
tags: ["mcleod residence"]
|
180
|
+
|
181
|
+
'2008-11-04':
|
182
|
+
- name: "Obama wins the election."
|
183
|
+
category: "world"
|
184
|
+
tags: ["politics"]
|
185
|
+
|
186
|
+
'2009-03-17':
|
187
|
+
- name: "Locavore, my farmer's market iPhone app, launches"
|
188
|
+
category: "work"
|
189
|
+
tags: ["locavore"]
|
190
|
+
|
191
|
+
'2009-05-28':
|
192
|
+
- name: "🎂 I turn 33: Frugal to the max"
|
193
|
+
category: "birthday"
|
194
|
+
link: "https://busterbenson.com/2009/05/28/frugal-to-the-max"
|
195
|
+
tags: ["annual review"]
|
196
|
+
|
197
|
+
'2009-12-16':
|
198
|
+
- name: "750words.com launches"
|
199
|
+
category: "work"
|
200
|
+
link: "/pile/750-words"
|
201
|
+
tags: ["750 words"]
|
202
|
+
|
203
|
+
'2010-05-10':
|
204
|
+
- name: "❤️ Niko is born"
|
205
|
+
category: "family"
|
206
|
+
tags: ["niko"]
|
207
|
+
|
208
|
+
'2010-05-28':
|
209
|
+
- name: "🎂 I turn 34: Cultivating the core"
|
210
|
+
category: "birthday"
|
211
|
+
link: "https://busterbenson.com/2010/05/28/cultivate-the-core"
|
212
|
+
tags: ["annual review"]
|
213
|
+
|
214
|
+
'2010-09-01':
|
215
|
+
- name: "Health Month launches"
|
216
|
+
category: "work"
|
217
|
+
tags: ["health month"]
|
218
|
+
|
219
|
+
'2011-05-28':
|
220
|
+
- name: "🎂 I turn 35: Love the struggle"
|
221
|
+
category: "birthday"
|
222
|
+
link: "https://busterbenson.com/2011/05/28/love-the-struggle"
|
223
|
+
tags: ["annual review"]
|
224
|
+
|
225
|
+
'2011-07-01':
|
226
|
+
- name: "Habit Labs is founded"
|
227
|
+
category: "work"
|
228
|
+
tags: ["habit labs"]
|
229
|
+
|
230
|
+
'2012-03-13':
|
231
|
+
- name: "Habit Labs launches Budge"
|
232
|
+
category: "work"
|
233
|
+
tags: ["habit labs", "bud.ge"]
|
234
|
+
|
235
|
+
'2012-05-28':
|
236
|
+
- name: "🎂 I turn 36: Talk it out"
|
237
|
+
category: "birthday"
|
238
|
+
link: "https://busterbenson.com/2012/05/28/talk-it-out"
|
239
|
+
tags: ["annual review"]
|
240
|
+
|
241
|
+
'2012-07-11':
|
242
|
+
- name: "Habit Labs closes down"
|
243
|
+
category: "work"
|
244
|
+
tags: ["habit labs"]
|
245
|
+
|
246
|
+
'2012-08-22':
|
247
|
+
- name: "I publish the first version of my book of beliefs"
|
248
|
+
category: "self"
|
249
|
+
tags: ["beliefs"]
|
250
|
+
|
251
|
+
'2012-09-21':
|
252
|
+
- name: "My first day at Twitter"
|
253
|
+
category: "work"
|
254
|
+
tags: ["twitter"]
|
255
|
+
|
256
|
+
'2013-01-04':
|
257
|
+
- name: "🚚 Kellianne, Niko, and I move to Berkeley, California"
|
258
|
+
category: "relationships"
|
259
|
+
tags: ["kellianne", "home"]
|
260
|
+
|
261
|
+
'2013-05-28':
|
262
|
+
- name: "🎂 I turn 37: More kiloslogs"
|
263
|
+
category: "birthday"
|
264
|
+
link: "https://busterbenson.com/2013/05/28/more-kiloslogs"
|
265
|
+
tags: ["annual review"]
|
266
|
+
|
267
|
+
'2013-12-23':
|
268
|
+
- name: "I sell my Belltown condo in Seattle"
|
269
|
+
category: "self"
|
270
|
+
|
271
|
+
'2014-05-09':
|
272
|
+
- name: "❤️ I meet Rodney, my brother. We found each other through 23andme.com"
|
273
|
+
category: "family"
|
274
|
+
tags: ["rodney"]
|
275
|
+
|
276
|
+
'2014-05-28':
|
277
|
+
- name: "🎂 I turn 38: Cultivate quality time"
|
278
|
+
category: "birthday"
|
279
|
+
link: "https://busterbenson.com/2014/05/28/cultivate-quality-time"
|
280
|
+
tags: ["annual review"]
|
281
|
+
|
282
|
+
'2014-09-09':
|
283
|
+
- name: "🏡 Kellianne and I buy a house in Berkeley"
|
284
|
+
category: "family"
|
285
|
+
tags: ["home"]
|
286
|
+
|
287
|
+
'2015-05-28':
|
288
|
+
- name: "🎂 I turn 39: Make wiggle room"
|
289
|
+
category: "birthday"
|
290
|
+
link: "https://busterbenson.com/2015/06/13/make-wiggle-room"
|
291
|
+
tags: ["annual review"]
|
292
|
+
|
293
|
+
'2015-06-03':
|
294
|
+
- name: "My last day at Twitter"
|
295
|
+
category: "work"
|
296
|
+
tags: ["twitter"]
|
297
|
+
|
298
|
+
'2015-06-08':
|
299
|
+
- name: "My first day at Slack"
|
300
|
+
category: "work"
|
301
|
+
tags: ["slack"]
|
302
|
+
|
303
|
+
'2015-12-15':
|
304
|
+
- name: "We launch Slack's Platform"
|
305
|
+
category: "work"
|
306
|
+
tags: ["slack"]
|
307
|
+
|
308
|
+
'2016-05-28':
|
309
|
+
- name: "🎂 I turn 40: Mind the loops"
|
310
|
+
category: "birthday"
|
311
|
+
link: "https://buster.medium.com/40-mind-the-loops-9e0c6ba35a87"
|
312
|
+
tags: ["annual review"]
|
313
|
+
|
314
|
+
'2016-08-06':
|
315
|
+
- name: "❤️ Louie is born"
|
316
|
+
category: "family"
|
317
|
+
tags: ["louie"]
|
318
|
+
|
319
|
+
'2016-09-01':
|
320
|
+
- name: "🧠 I publish the Cognitive Bias Cheat Sheet"
|
321
|
+
desc: "My first truly viral post. Eventually leads to a book deal."
|
322
|
+
category: "writing"
|
323
|
+
link: "https://betterhumans.coach.me/cognitive-bias-cheat-sheet-55a472476b18"
|
324
|
+
tags: ["biases"]
|
325
|
+
|
326
|
+
'2016-11-08':
|
327
|
+
- name: "🤬 Trump wins the election"
|
328
|
+
category: "world"
|
329
|
+
tags: ["politics"]
|
330
|
+
|
331
|
+
'2017-05-28':
|
332
|
+
- name: "🎂 I turn 41: Seek endarkenment"
|
333
|
+
category: "birthday"
|
334
|
+
link: "https://buster.medium.com/41-seek-endarkenment-9700663dea67"
|
335
|
+
tags: ["annual review"]
|
336
|
+
|
337
|
+
'2017-11-12':
|
338
|
+
- name: "👴🏻 My grandfather passes away"
|
339
|
+
category : "family"
|
340
|
+
|
341
|
+
'2018-01-30':
|
342
|
+
- name: "Signed a book deal for my book about arguing"
|
343
|
+
category: "writing"
|
344
|
+
tags: ["why are we yelling?"]
|
345
|
+
|
346
|
+
'2018-02-21':
|
347
|
+
- name: "My last day at Slack"
|
348
|
+
category: "work"
|
349
|
+
tags: ["slack"]
|
350
|
+
|
351
|
+
'2018-03-14':
|
352
|
+
- name: "My first day at Patreon"
|
353
|
+
category: "work"
|
354
|
+
tags: ["patreon"]
|
355
|
+
|
356
|
+
'2018-05-28':
|
357
|
+
- name: "🎂 I turn 42: Dig deeper"
|
358
|
+
category: "birthday"
|
359
|
+
link: "https://busterbenson.com/2018/07/02/42-dig-deeper"
|
360
|
+
tags: ["annual review"]
|
361
|
+
|
362
|
+
'2018-09-23':
|
363
|
+
- name: "My last day at Patreon"
|
364
|
+
category: "work"
|
365
|
+
tags: ["patreon"]
|
366
|
+
|
367
|
+
'2018-10-01':
|
368
|
+
- name: "I begin working on my book full-time"
|
369
|
+
category: "writing"
|
370
|
+
tags: ["why are we yelling?"]
|
371
|
+
|
372
|
+
'2019-05-28':
|
373
|
+
- name: "🎂 I turn 43: All in & with the flow"
|
374
|
+
category: "birthday"
|
375
|
+
link: "https://buster.medium.com/43-all-in-with-the-flow-e61e55b5dcf0"
|
376
|
+
tags: ["annual review"]
|
377
|
+
|
378
|
+
'2019-11-19':
|
379
|
+
- name: "😱 Why Are We Yelling? is published"
|
380
|
+
category: "writing"
|
381
|
+
tags: ["why are we yelling?"]
|
382
|
+
link: "https://buster.medium.com/hello-this-is-my-book-b6aab9415f64"
|
383
|
+
|
384
|
+
'2020-03-14':
|
385
|
+
- name: "🏠 First day of shelter-in-place for COVID-19"
|
386
|
+
category: "world"
|
387
|
+
|
388
|
+
'2020-05-28':
|
389
|
+
- name: "🎂 I turn 44: Year of the Amateur"
|
390
|
+
category: "birthday"
|
391
|
+
link: "https://paper.dropbox.com/doc/44-Year-of-the-Amateur--A1I6fGSn30hLhQMF5kpFCXC7AQ-xzFR0pPTrr36OFxt7h86h"
|
392
|
+
tags: ["annual review"]
|
393
|
+
|
394
|
+
'2020-12-14':
|
395
|
+
- name: "Biden officially declared winner of the election"
|
396
|
+
category: "world"
|
397
|
+
tags: ["politics"]
|
398
|
+
|
399
|
+
'2021-01-06':
|
400
|
+
- name: "Trump supporters storm the Capital Building in DC"
|
401
|
+
category: "world"
|
402
|
+
tags: ["politics"]
|
403
|
+
|
404
|
+
'2021-01-20':
|
405
|
+
- name: "Biden is inaugurated"
|
406
|
+
category: "world"
|
407
|
+
tags: ["politics"]
|
408
|
+
|
409
|
+
'2021-05-04':
|
410
|
+
- name: "💉💉 I get my 2nd vaccination"
|
411
|
+
category: "world"
|
412
|
+
tags: ["pandemic"]
|
413
|
+
|
414
|
+
'2021-05-28':
|
415
|
+
- name: "🎂 I turn 45: Year of Reconstellation"
|
416
|
+
category: "birthday"
|
417
|
+
link: "https://buster.medium.com/45-year-of-reconstellation-38f7c0917c1b"
|
418
|
+
tags: ["annual review"]
|
419
|
+
|
420
|
+
'2022-04-29':
|
421
|
+
- name: "Kellianne and I officially divorced"
|
422
|
+
desc: "Separated in June of 2019."
|
423
|
+
category: "relatiohships"
|
424
|
+
tags: ["kellianne"]
|
425
|
+
|
426
|
+
'2022-05-18':
|
427
|
+
- name: "I get COVID"
|
428
|
+
desc: "Got it from the kids. We all make it through with minimal symptoms, thank goodness for vaccines."
|
429
|
+
category: "relatiohships"
|
430
|
+
tags: ["pandemic"]
|
431
|
+
|
432
|
+
'2022-05-28':
|
433
|
+
- name: "🎂 I turn 46: A Blagenflorble Heart"
|
434
|
+
category: "birthday"
|
435
|
+
link: "https://buster.medium.com/46-a-blagenflorble-heart-31bc2a992a83"
|
436
|
+
tags: ["annual review"]
|
437
|
+
|
438
|
+
'2022-08-15':
|
439
|
+
- name: "My first day at Medium"
|
440
|
+
category: "work"
|
441
|
+
tags: ["medium"]
|
442
|
+
|
443
|
+
'2023-02-19':
|
444
|
+
- name: "I adopted Pancake 😻"
|
445
|
+
category: "family"
|
446
|
+
tags: ["cat"]
|
447
|
+
|
448
|
+
'2023-05-28':
|
449
|
+
- name: "🎂 I turn 47: CHALANT!"
|
450
|
+
category: "birthday"
|
451
|
+
link: "https://buster.medium.com/47-chalant-515c3ad09051"
|
452
|
+
tags: ["annual review"]
|
453
|
+
|
454
|
+
'2023-12-12':
|
455
|
+
- name: "🏡 I buy a house in Albany"
|
456
|
+
category: "family"
|
457
|
+
tags: ["home"]
|
458
|
+
|
459
|
+
'2023-10-24':
|
460
|
+
- name: "First date with Sarah"
|
461
|
+
category: "relationships"
|
462
|
+
|
463
|
+
'2024-05-08':
|
464
|
+
- name: "Pancake has kittens 😻😻😻😻"
|
465
|
+
category: "family"
|
466
|
+
tags: ["cat"]
|
467
|
+
|
468
|
+
'2024-05-28':
|
469
|
+
- name: "🎂 I turn 48: Be Buster Benson, BBB, Be Be Be, 🐝🐝🐝"
|
470
|
+
category: "birthday"
|
471
|
+
link: "https://buster.medium.com/48-be-buster-benson-bbb-be-be-be-ba0d51abcc7c"
|
472
|
+
tags: ["annual review"]
|
473
|
+
|
474
|
+
'2024-10-03':
|
475
|
+
- name: "My last day at Medium"
|
476
|
+
category: "work"
|
477
|
+
tags: ["medium"]
|
478
|
+
|
479
|
+
'2024-10-18':
|
480
|
+
- name: "Started full-time at 750 Words"
|
481
|
+
category: "work"
|
482
|
+
tags: ["750-words"]
|
483
|
+
|
484
|
+
'2024-11-05':
|
485
|
+
- name: "🤮 Trump wins election"
|
486
|
+
category: "world"
|
487
|
+
tags: ["politics"]
|
488
|
+
|
489
|
+
'2056-09-12':
|
490
|
+
- name: "☠️ My life expectancy expiration date"
|
491
|
+
category: "self"
|
492
|
+
tags: []
|
493
|
+
|
494
|
+
'2076-05-28':
|
495
|
+
- name: "🚲 Goal: ride a bike around the block on my 100th birthday"
|
496
|
+
category: "goal"
|
497
|
+
link: "https://medium.com/written-on-bart/a-big-hairy-audacious-goal-for-your-life-b52fa37bc169"
|
498
|
+
tags: ["health"]
|
data/_includes/footer-post.html
CHANGED
@@ -27,10 +27,8 @@
|
|
27
27
|
</ul>
|
28
28
|
</nav> -->
|
29
29
|
<div class="bottom-footer">
|
30
|
-
<
|
31
|
-
|
32
|
-
<a href="https://knhash.in" title="the artist">knhash</a>
|
33
|
-
</i>
|
30
|
+
<br>
|
31
|
+
<i><a href="https://knhash.in/jekyllBear" title="the art">jekyllBear</a> by <a href="https://knhash.in" title="the artist">knhash</a></i>
|
34
32
|
</div>
|
35
33
|
</footer>
|
36
34
|
|
data/_includes/footer.html
CHANGED
@@ -11,9 +11,6 @@
|
|
11
11
|
<li><a href="https://canisee.xyz" title="Confirm your vision functionality">[Can I See]</a></li>
|
12
12
|
</ul>
|
13
13
|
</nav> -->
|
14
|
-
<i>
|
15
|
-
<a href="https://knhash.in/jekyllBear" title="the art">jekyllBear</a> built and maintained by
|
16
|
-
<a href="https://knhash.in" title="the artist">knhash</a>
|
17
|
-
</i>
|
14
|
+
<i><a href="https://knhash.in/jekyllBear" title="the art">jekyllBear</a> by <a href="https://knhash.in" title="the artist">knhash</a></i>
|
18
15
|
</footer>
|
19
16
|
|
data/_includes/header.html
CHANGED
@@ -1,13 +1,21 @@
|
|
1
|
-
|
2
|
-
<
|
3
|
-
<a href="{{ site.url }}">Home</a>
|
4
|
-
<a href="{{ site.url }}{{ site.Blog }}">Blog</a>
|
5
|
-
|
6
|
-
{% for link in site.links %}
|
7
|
-
<a href="{{ site.url }}{{ link[1] }}">{{ link[0] }}</a>
|
8
|
-
{% endfor %}
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en" dir="ltr">
|
9
3
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
4
|
+
<header>
|
5
|
+
<h2 class="title">{{ site.title }}</h2>
|
6
|
+
<nav>
|
7
|
+
<p>
|
8
|
+
<a href="{{ site.url }}">Home</a>
|
9
|
+
<a href="{{ site.url }}{{ site.Blog }}">Blog</a>
|
10
|
+
<a href="{{ site.url }}{{ site.Life }}">Life</a>
|
11
|
+
|
12
|
+
{% for link in site.links %}
|
13
|
+
<a href="{{ site.url }}{{ link[1] }}">{{ link[0] }}</a>
|
14
|
+
{% endfor %}
|
15
|
+
|
16
|
+
{% for link in site.special_links %}
|
17
|
+
<a href="{{ link[1] }}">[{{ link[0] }}]</a>
|
18
|
+
{% endfor %}
|
19
|
+
</p>
|
20
|
+
</nav>
|
21
|
+
</header>
|