fix: don't expect title field for feeds

This commit is contained in:
knoflook 2022-01-28 12:29:44 +01:00
parent df19668260
commit 2c5e94c265
Signed by: knoflook
GPG Key ID: D6A1D0E8FC4FEF1C
1 changed files with 6 additions and 1 deletions

View File

@ -60,6 +60,11 @@ def create_frontmatter(entry):
else:
author = ""
if "title" in entry:
title = entry.title
else:
title = ""
tags = []
if "tags" in entry:
# TODO finish categories
@ -67,7 +72,7 @@ def create_frontmatter(entry):
tags.append(t["term"])
frontmatter = {
"title": entry.title,
"title": title,
"date": published.format(),
"summary": "",
"author": author,