Hello,

This may be basic but I cannot for the life of me figure out how to include a css file into my index.dt.
I have tried a couple of jade ways to do it but it didn't work either.

What I am currently at and doesn't work:

- void css(string file)
		link(rel='stylesheet', type='text/css', href='/css/#{file}.css')
doctype html
-auto title = "Hello, <World!>";
html(lang='en')
	head
		- css("style");

Also I would like to ask how to make it so that every time I save my project in Atom the server restarts on its own, because right now I have to manually type "dub" every time.