如何将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