12. Bento Static Pages¶
12.1. Introduction¶
There are a number of static pages that are available for the Bento Framework. These are findable by navigating to the “About” link on the Navigation Bar. In the example below, the static pages are “Bento”, “Resources”, and “GraphQL”.
12.2. Prerequisites¶
Fork the GitHub repo
https://github.com/CBIIT/bento-frontend
(representing your GitHub username asYOUR-USERNAME
)Create a local clone of your fork into a local directory, represented here as
$(src)
.
12.3. Instructions¶
12.3.1. Test the Local Environment Changes¶
Edit $(src)/packages/bento-frontend/src/content/prod/aboutPagesContent.yaml
, and the system will show the changes.
12.3.2. Create a New Static Page with a New Route¶
Edit
$(src)/packages/bento-frontend/src/bento/aboutPagesRoutes.js
add a new pathAdd a new copy of yaml property to with page name matching above path
12.3.3. Edit Configuration File¶
There is a maximum of 6 pages that can appear under “About”. If no informational pages are configured to be displayed, the “About” menu option will be hidden.
To add contents to the ‘About’ menu, see “Global Navigation Bar” instructions
To edit the title for each page in the ‘About’ menu:
edit file:
$(src)/packages/bento-frontend/src/content/prod/aboutPagesContent.yaml
set the variable
title
to have the title of the page.
To set the primary or “hero” image to be tiled onto each page:
edit file:
$(src)/packages/bento-frontend/src/content/prod/aboutPagesContent.yaml
set variable
primaryContentImage
with the desired imageNOTE: Do not use local files. This should point to an external image url (e.g. publicly-available, on the internet)
To set a secondary image (including, a zoom and scan-around function):
Edit
$(src)/packages/bento-frontend/src/content/prod/aboutPagesContent.yaml
Add the Field secondaryZoomImage to show up the secondary Image
To add content for each page: (including basic formatting of it, i.e. line/paragraph breaks, bold type, hyperlinked text), follow the following syntax guide
Note: The pages need to be in ‘YAML’ format
Element | Syntax | Example |
---|---|---|
Link or Download File from externally hosted file | $$[title](link)$$ |
$$[Cloud Resources](https://datascience.cancer.gov/data-commons/cloud-resources)$$ (opens in new tab with link-out icon) |
Bold Title | $$#text#$$ |
$$#Cloud Resourses#$$ |
Bold Inline Text | $$*text*$$ |
$$@CloudResourses@$$ |
Download Submission PDF | $${Text}$$ |
$${submission guide [PDF]}$$ |
Enhanced Link | $$[Title](target:[_self] url:[url] type:[Optional] )$$ |
$$[Testing](target:_self url:/#/developers type:0)$$ (opens in same page without link-out icon) |
Enhanced Link | $$[Title](target:[_blank] url:[url] type:[Optional] )$$ |
$$[Testing](target:_blankurl:/#/developers type:0)$$ (opens in new tab without link-out icon) |
12.4. Best Practices¶
It is recommended to have the title of each page in the ‘About’ menu match the title on the actual page.
The suggested syntax for YAML files is to use 2 spaces for indentation, but YAML will follow whatever indentation system that the individual file uses. In our files we used 2 spaces to represent