在玉中添加页脚或其他部分内容

时间:2014-12-10 06:11:34

标签: node.js express pug

我想在我的Express应用程序的所有页面上使用的布局中添加页脚。我跟着这个相关的教程

http://www.devthought.com/code/use-jade-blocks-not-layouts/

但我似乎错过了一些东西。这是我的代码。

layout.jade

doctype html
html
  head
    title= title
    link(rel='stylesheet', href='/stylesheets/style.css')
  body
    block content

    block footer

footer.jade

extends layout

block footer
  footer
    ul
      li
        a(href="/team") Team
      li
        a(href="/privacy") Privacy
      p
        | company name <br> 
        | &copy; 2014, All Rights Reserved

1 个答案:

答案 0 :(得分:8)

显然它可以使用包含。我将它添加到我的布局中,因为它在所有页面上都是相同的。

<强> layout.jade

doctype html
html
  head
    title= title
    link(rel='stylesheet', href='/stylesheets/style.css')
  body
    block content

    include footer