-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0648bb3
commit 3bb3340
Showing
3 changed files
with
76 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[ | ||
|
||
{ | ||
"title": "Press Release January 2023", | ||
"link": "assets/documents/SLC Press Release.pdf" | ||
}, | ||
{ | ||
"title": "Press Release June 2023", | ||
"link": "assets/documents/press-release-2023-06.pdf" | ||
}, | ||
{ | ||
"title": "Press Release November 2023", | ||
"link": "assets/documents/press-release-2023-11.pdf" | ||
} | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Press Releases JSON Structure | ||
|
||
## Structure | ||
|
||
The `pressReleases` array contains objects with the following properties: | ||
|
||
!! The Most recent press release is the very top title-link set, after that are the most recent ones. When updating rememebr this. !! | ||
|
||
- **title**: The title of the press release. | ||
- **link**: URL to the PDF document. | ||
|
||
## Example | ||
|
||
```json | ||
{ | ||
|
||
{ | ||
"title": "Press Release January 2023", | ||
"link": "assets/documents/press-release-2023-01.pdf", | ||
} | ||
|
||
{ | ||
"title": "Press Release December 2022", | ||
"link": "assets/documents/press-release-2022-12.pdf", | ||
} | ||
|
||
} | ||
``` |