<#ftl strict_syntax=false> FreeMarker: Root Lookup Test

A simple test follows:

${message}

Access the same variable via the root variable (dot syntax):

${.data_model.message}

Access the same variable via the root variable (bracket syntax):

${.data_model["message"]}

Ensure that root lookups are unaffected by local variables:

${.data_model.message} ${message}