Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rambip authored Nov 13, 2024
1 parent 7009c7a commit 7ea23b1
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 @@ -100,12 +100,12 @@ def generate_page(title, template_path, **globals):
generate_home()
generate_page("Asimov", "asimov.html", video_ids=ASIMOV_VIDEO_IDS)

lectures = reverse(read_yml('lectures.yml'))
lectures = reversed(read_yml('lectures.yml'))
generate_page("Notre groupe de lecture", "groupe-de-lecture.html", lectures=lectures)

generate_page("Politique de confidentialité", "confidentialite.md")
generate_page("Mentions légales", "mentions-legales.md")
generate_page("Nous aider", "nous-aider.md")
generate_page("À propos du piaf", "presentation.md")
generate_page("Hackathons", "hackathons.md")
generate_page("Contact", "contact.md")
generate_page("Contact", "contact.md")

0 comments on commit 7ea23b1

Please sign in to comment.