I am having trouble referencing custom.css and bootstrap.min.css in my jade layout file that refers to views. It seems like the references are not working correctly. Can somebody please review my code to see if there is any issue?
Jade Layout
doctype html
html
head
title=title
link(rel='stylesheet', href='/stylesheets/style.css')
body
block content
View file
extends layout
block content
h1= title
p Welcome to #{title}
style.css
body {
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
background: #666;
}
p {
color: #00B7FF;
}