You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
608 B
19 lines
608 B
//- https://pug.bootcss.com/language/inheritance.html
|
|
|
|
html
|
|
head
|
|
title 我的站点
|
|
block css
|
|
link(href='/static/css/index.css' rel='stylesheet')
|
|
link(href='/static/css/style.css' rel='stylesheet')
|
|
body
|
|
#app
|
|
block header
|
|
include header.pug
|
|
block content
|
|
block foot
|
|
include footer.pug
|
|
block script
|
|
script(src='https://cdn.jsdelivr.net/npm/lodash@4.17.15/lodash.min.js')
|
|
script(src='https://cdn.jsdelivr.net/npm/vue/dist/vue.js')
|
|
script(src='/static/js/index.js')
|
|
|