mirror of
https://github.com/HandBrake/HandBrake-docs.git
synced 2025-12-11 04:35:53 -06:00
Meta and title can only be placed inside head, so they are not reusable outside the base template.
13 lines
395 B
HTML
13 lines
395 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ document.language-code }}">
|
|
<head>
|
|
<meta charset="{{ document.text-encoding }}" />
|
|
<meta name="author" content="{{ document.authors }}" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ document.project }} Documentation — {{ document.title }}</title>
|
|
</head>
|
|
<body>
|
|
{{ template.document }}
|
|
</body>
|
|
</html>
|