22 lines
738 B
HTML
22 lines
738 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
|
|
<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
|
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
|
|
<link rel="icon" type="image/png" href="{{ '/assets/images/logo.png' | relative_url }}">
|
|
</head>
|
|
<body>
|
|
<div class="docs-wrapper">
|
|
{% include sidebar.html %}
|
|
|
|
<main class="main-content">
|
|
<div class="content-wrapper">
|
|
{{ content }}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html> |