mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
15 lines
287 B
HTML
15 lines
287 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
{{#if title}}
|
|
<title>{{ title }}</title>
|
|
{{/if}}
|
|
</head>
|
|
<body>
|
|
{{! Triple braces to prevent HTML escaping }}
|
|
{{{ htmlBody }}}
|
|
</body>
|
|
</html>
|