Your problem in this line:
link(rel='stylesheet', href='/stylesheets/style.css')
You cannot see it very well in StackOverflow, but after the tag you have a bunch of spaces.
Spaces here are replaced by _:
link(rel='stylesheet', href='/stylesheets/style.css')________________
So your jade will create something like:
<link rel="stylesheet" href="/stylesheets/style.css">________________</link>
, <link> .