def load_breadcrumb(article):
"""
???????
:param article:
:return:
"""
names = article.get_category_tree()
names.append((settings.SITE_NAME, settings.SITE_URL))
names = names[::-1]
return {
'names': names,
'title': article.title
}
评论列表
文章目录