10:46: I needed to insert only the day of the month in two spots and wasn’t grokking the numerical order significance of golang’s date layout constant. The tl;dr is: use ‘2’, ‘02’, or ‘_2’, as the date constant’s day of month is in the second position. NB: the third position is the hour; you’d use ‘15’ for 24h time and ‘3’ or ‘03’ for 12h time (paired with “PM” or “AM” where you want that inserted).
21:30: I need to spend some quality time playing around with CSS’s built-in grid1, in particular - with minmax and fraction sizing.
-
See CSS Tricks: An Introduction to the
fr
CSS unit for examples ↩︎