Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc(README): add notes on timestamps for events #26

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ expedite the process.
#### Details to add an event

Event information is stored in the `_events/` directory. To add a new a event, create a file in
that folder using a `.html` or `.md` file extension. Start your file with the following content:
that folder using a `.html` or `.md` file extension. Start your file with the following content
(or copy the template file `event-frontmatter.txt`):

```md
---
Expand All @@ -56,7 +57,8 @@ The first field to add is the title; between the sets of dashes add a like that
On a new line, add a line that begins with `start-date: ` and then format the start date of the
event using ISO 8601 format including the event time zone. For example,
`2023-04-17T22:07:43-04:00`. Then add a line that begins with `end-date: ` and do the same for
end date/time of the event.
end date/time of the event. Remember that Eastern Time in the US is `-04:00` during the
summer (EDT) and `-05:00` during the winter (EST).

Next, add a line that begins with `location: ` and add a human-readable location for where the
event takes place. This should include the name of the building/business and the city where the
Expand Down
4 changes: 2 additions & 2 deletions _events/2024-01-maoc-meetup.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
start-date: 2024-01-24T17:30:00-04:00
end-date: 2024-01-24T19:00:00-04:00
start-date: 2024-01-24T17:30:00-05:00
end-date: 2024-01-24T19:00:00-05:00
title: Mid-Atlantic OSCAL Community Meetup (January 2024)
location: Solace Outpost (Large Meeting Room)
map-link: https://goo.gl/maps/Zat8RT1revNvnW9G6
Expand Down
3 changes: 3 additions & 0 deletions event-frontmatter.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
---
# Timestamps should be in RFC 3339 format. US Eastern Time is
# UTC-04:00 from Mar-Nov
# UTC-05:00 from Nov-Mar
start-date:
end-date:
title:
Expand Down