Locals
From keys and values added in locals/ar.json
and locals/en.json
, you can access locals with a key to print the value.
locals/ar.json
{
"home_title": "الصفحة الرئيسية",
"products": "المنتجات"
}
You can inject it in the twig file as follows:
<h1>{{ locals.home_title }}</h1>
Last modified: 4 months ago