You can update your customers with latest news. When new content is available, it will be automatically shown in a popup. Users can close the popup and return read the news later.
IMAGE of how news popup looks like
- Create a new public GitHub repository
- In Your.Console go to Settings -> Application Settings -> News repository -> add a link to your Github news repository
IMAGE of settings menu where link is placed
Your repository should have this structure:

This file stores a list of all news in JSON format. You need to follow the exact structure as described below:
"list": [ // list of news
{
"path": "/list/second.md", // path to md file. (required)
"date": "04.09.2022", // date and time of the post (required) FORMAT: MM.DD.YYYY (required)
"link": "Read more" // Link is optional - for the latest post it will render as a button, for older news it will be rendered as a regular link.
"URL": "https://mywebsite.com/news.html" // Link URL. Links will open in new browser tab.
}
]
IMAGE of the news folder with news files from github
This folder contains individual news files in .md (markdown)format.
- Inside of the
newsfolder create new file:my_first_news.md. File name can be any. - Edit the contents of the file
- Title (required). Keep it short
- You can add a cover image (optional) in .png format. Size: 640x120px
- Plain text. This is the actual content of the news
Example:
# Title

If you believed they put a man on the moon
Man on the moon
If you believed there's nothing up his sleeve
Then nothing is cool
- Edit
config.jsonby adding details about the new post.
Example:
{
"news": [
{
"path": "/news/my_first_news.md",
"date": "04.09.2022",
"link": "Read more"
"URL": "https://mywebsite.com/my_first_news.html"
}
- Go back to Console and refresh page (F5)
- Inside of the
newsfolder create new file:my_second_news.md. File name can be any - Edit the contents of the file as described above
- Update
config.jsonby adding info about new post to the top of the file
Example:
{
"news": [
{
"path": "/news/second.md",
"date": "04.09.2022",
"link": "Read more"
"URL": "https://mywebsite.com/my_second_news.html"
},
{
"path": "/news/my_second_news.md",
"date": "07.11.2022",
"link": "Read more"
"URL": "https://mywebsite.com/my_first_news.html"
}
]
}