hexo,pug:如何创建使用主题中的哈巴狗布局的哈巴狗内容

时间:2018-02-12 21:21:27

标签: pug hexo pugjs

如何将source中的pug模板中的块移动到theme中的pug模板?

Hexo新手。处理hexo-theme-bootstrap4-starterkit主题。

使用pug -w index.pug制作一些哈巴狗模板。尝试将我的内容从themes/bootstrap4-starterkit移到source

我的index.pug文件有这样的内容:

extends themes/layout.pug

block scripts
  script(src="//cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js", crossorigin="anonymous")

block content
  section#home
    .jumbotron.mt-4
      h1.display-4 Sooooooo Good!

layout.pug文件或多或少:

html(lang="en")
  head
    meta(charset='UTF-8')
    ...
    block scripts

    block opengraph
      meta(name="description", content=page.summary||config.subtitle)
      ...

  body
    main#main.container
      block content

    footer
      block footer
      include _partial/footer

0 个答案:

没有答案