mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-21 18:13:29 +00:00
23 lines
938 B
HTML
23 lines
938 B
HTML
<!DOCTYPE HTML>
|
|
<html lang="{{ language }}" {% block htmlTag %}{% endblock %}>
|
|
{{ htmlSnippet("html:start")|default("")|safe }}
|
|
<head>
|
|
{{ htmlSnippet("head:start")|default("")|safe }}
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
|
|
<meta name="description" content="{% block description %}{% endblock %}">
|
|
<meta name="generator" content="GitBook {{ gitbook.version }}">
|
|
{% block head %}{% endblock %}
|
|
{{ htmlSnippet("head:end")|default("") }}
|
|
</head>
|
|
<body>
|
|
{{ htmlSnippet("body:start")|default("")|safe }}
|
|
{% block style %}{% endblock %}
|
|
{% block content %}{% endblock %}
|
|
{% block javascript %}{% endblock %}
|
|
{{ htmlSnippet("body:end")|default("")|safe }}
|
|
</body>
|
|
{{ htmlSnippet("html:end")|default("")|safe }}
|
|
</html>
|