我的 django 项目中有一个应用程序。
我创建了 seo.py 文件并添加:
从 rollyourown 导入 seo
class MyMetadata(seo.Metadata):
title = seo.Tag(head=True, max_length=68)
description = seo.MetaTag(max_length=155)
keywords = seo.KeywordTag()
class HelpText:
title = "This will appear in the window/tab name, as well as in search results."
keywords = "A comma separated list of words or phrases that describe the content"
description = "This will appear in the description"
class Meta:
seo_views = ('app_name', )
在我的 base.html 中,head
我添加了:
{% load seo %}
{% get_metadata %}
但什么也没有显示。怎么了?(当然,我在管理面板中添加了数据 - 我的元数据(查看))