有没有办法用js和pug添加到页面标题,如果我有一个带有帕格的布局文件,它将页面标题设置为,例如Aero -
在扩展布局文件的pug文件中,我想用其他东西将字符串附加到该页面标题,因此它将显示Aero - 添加的字符串。
这有可能通过某种插值吗?
谢谢 :)
你可以这样做:
title Aero #{addedString}
meta(name='description', content="Aero" + addedStringDescription)
meta(property='og:title', content= "Aero" + addedString)
您可以尝试使用pug的块附加功能。
在layout.pug中:
html
head
block head
title= 'Aero'
body
block content
在template.pug中:
extends layout.pug
block append head
title= title + 'The added string'