How to create a new page override manually using Git
To create a Page override manually, you'll want to add a .page.json file to the Pages folder for the specific Page you are overriding.
The Page override JSON file is a complete override of the default Page (not a partial override), meaning the entire file is overridden and inherits nothing from the default Page.
Main Page Fields
The Page JSON file stores the following top-level properties:
Field Name | Description | Example |
---|---|---|
pages | An array of the main Page Items in the Page. | "pages": [...] |
Page Items
The main items in a Page. These define the page's identity within Aurora, what type of page it is, and where it can be accessed (URL).
Each Page Item in the Page override will contain the following properties:
Field Name | Description | Example |
---|---|---|
id | The ID of the page override. | "id":"ForumBoardPage" |
type | The type of Page Descriptor. | "type": "FORUM" |
url | The URL of the page. | "url": "<https://lia238-release-aurora.qa.lithium.com/designer/pages?pageId=CommunityPage"> |
ATLAS
Comments