Sparrow0hawk / rse-calendar

A GitHub pages powered event calendar
https://sparrow0hawk.github.io/rse-calendar/
4 stars 4 forks source link

Support for ongoing events #52

Closed Sparrow0hawk closed 1 year ago

Sparrow0hawk commented 1 year ago

Currently the Jekyll logic for showing an event is:

https://github.com/Sparrow0hawk/rse-calendar/blob/ad700725eb7a4bb4535dabaaca3a0da6e7fbc456/_layouts/home.html#L31-L32

And in generating posts:

https://github.com/Sparrow0hawk/rse-calendar/blob/ad700725eb7a4bb4535dabaaca3a0da6e7fbc456/_scripts/generate_posts/generate_posts.py#L32

If your event runs over multiple days this logic means it won't show after the first day. It would be better to rewrite the logic to calculate the end time of the event and do our comparisons against that.

Sparrow0hawk commented 1 year ago

Resolved in #67