18 lines
255 B
HTML
18 lines
255 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<!--
|
||
|
|
This page demonstrates how to localize using a JSON file that contains the
|
||
|
|
translations for each placeholder.
|
||
|
|
-->
|
||
|
|
<html>
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<title>{{title}}</title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<h1>{{heading}}</h1>
|
||
|
|
<p>{{body}}</p>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|