本文整理汇总了Python中MaKaC.webinterface.pages.main.WPMainBase._getHeadContent方法的典型用法代码示例。如果您正苦于以下问题:Python WPMainBase._getHeadContent方法的具体用法?Python WPMainBase._getHeadContent怎么用?Python WPMainBase._getHeadContent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MaKaC.webinterface.pages.main.WPMainBase
的用法示例。
在下文中一共展示了WPMainBase._getHeadContent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _getHeadContent
# 需要导入模块: from MaKaC.webinterface.pages.main import WPMainBase [as 别名]
# 或者: from MaKaC.webinterface.pages.main.WPMainBase import _getHeadContent [as 别名]
def _getHeadContent(self):
head_content = WPMainBase._getHeadContent(self)
if self.atom_feed_url:
title = self.atom_feed_title or _("Indico Atom feed")
head_content += ('<link rel="alternate" type="application/atom+xml" title="{}" href="{}">'
.format(escape(title), self.atom_feed_url))
if self._mathjax:
head_content += render('js/mathjax.config.js.tpl')
head_content += '\n'.join('<script src="{0}"></script>'.format(url)
for url in self._asset_env['mathjax_js'].urls())
return head_content