Today, Tim showed us the real future of the iphone…
“Sorry, you must look at the ad to resume playback.”
Getting the day started with “+/-” by Buke and Gase.

The War on Drugs has a new album out, and I’m loving it. They are going to be in Chicago on my birthday… mmm, maybe I should grab some tickets. Listen on Spotfiy.
If you’re just learning Hugo like me, you may want to start with Go’s template documentation. The conditional sytax tripped me up for a minute. If you’re accustomed to writing conditionals like this:
if ($x == $y)
if ($x && $y)
if ($x == $y || $x == $z)
This is how it would look in a Go template:
{{ if eq $x $y }}
{{ if and $x $y }}
{{ if or (eq $x $y) (eq $x $z) }}
In a Go template, eq
is a function that you pass arguments to, not a comparison operator like you would use in JavaScript.
Welp, this site has just been switched over to Hugo! There’s still some template cleanup I want to do, but overall it was fairly simple to migrate from Jekyll.