私はコーヒーファイルを持っています.peepcodeスクリーンキャスト069に従っています.
routes = (app) ->
app.get '/login', (req, res) ->
res.render "#{__dirname}/views/login",
title: 'Login'
stylesheet: 'Login'
module.exports = routes
これは私のlayout.jadeファイルです
doctype 5
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
body
block content
いいえ、ローカル サーバーで Web ページにアクセスすると表示されますが、タイトルが [ログイン] として表示されません。私は何が欠けていますか?