Card

Card component for Pages.

Cards contain a title and content text.

Data Source

You can load data from an API endpoint or job. The data properties will be available as variables within your text.

For example, if you may have an endpoint that returns data like the following.

@{
    FirstName = "Adam"
    LastName = "Driscoll"
}

You could then use the following variables within the title and content text.

Hello, $FirstName $LastName! 

Last updated