我有咖啡文件,我正在关注 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
不,当我在本地服务器上点击网页时,它确实显示,但标题未显示为登录。我错过了什么?