Skip to content

Commit

Permalink
bring back the sitemap attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbrew committed Jul 15, 2024
1 parent cba04be commit 5878c96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class FrontmatterModel(BaseModel):
permalink: str | None = None
redirect_from: list[str] | None = None
redirect_to: str | None = None # via the jekyll-redirect-from plugin
sitemap: bool = True
sitemap: bool | None = None
title: str | None = None


Expand Down Expand Up @@ -112,7 +112,7 @@ class Schedule(FrontmatterModel):
]
difficulty: str | None = "All"
end_datetime: pydatetime.datetime | None = None

sitemap: bool = True
image: str | None = None
presenter_slugs: list[str] | None = None
room: str | None = None
Expand Down

0 comments on commit 5878c96

Please sign in to comment.