玉石的产量相当于什么?

时间:2011-05-13 18:50:43

标签: node.js express pug

在Ruby / Sinatra / Haml中我写道:

%html{:lang => 'en'}
  %head
    %meta{:charset => 'utf-8'}
    %title= @title

  %body
    =yield

Node / Express / Jade会是什么样子?

1 个答案:

答案 0 :(得分:8)

我找到了解决方案:

html(lang="en")
  head
    meta(charset="utf-8")
    title= title

  body
    != body
相关问题