Fix reading time on blog list
This commit is contained in:
parent
710a4c7955
commit
90545c3e2a
1 changed files with 2 additions and 5 deletions
|
@ -25,11 +25,8 @@ class BlogListPage(RoutablePageMixin, BaseContentPage):
|
||||||
]
|
]
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def reading_time(self) -> int:
|
def show_reading_time(self) -> bool:
|
||||||
"""
|
return False
|
||||||
How does one read a list page?
|
|
||||||
"""
|
|
||||||
return 0
|
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def table_of_contents(self) -> list[TocEntry]:
|
def table_of_contents(self) -> list[TocEntry]:
|
||||||
|
|
Loading…
Reference in a new issue