17 lines
546 B
Handlebars
17 lines
546 B
Handlebars
|
<!DOCTYPE HTML>
|
||
|
<html lang="{{ language }}">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>{{ title }}</title>
|
||
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
|
||
|
<meta name="description" content="{% block description %}{% endblock %}">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<link rel="stylesheet" href="book.css" media="screen" title="no title" charset="utf-8">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<script src="book.js"></script>
|
||
|
</body>
|
||
|
</html>
|