docs.html 1.2 KB
Newer Older
C
chomik 已提交
1 2 3 4
---
layout: default
menu: docs
title: Documentation
C
codecalm 已提交
5
page-header: Documentation
C
chomik 已提交
6 7
---

C
codecalm 已提交
8
{% assign current-url = page.url | replace_regex: "^/", "" %}
C
chomik 已提交
9

C
codecalm 已提交
10
<div class="row gx-lg-5">
C
codecalm 已提交
11 12
	<div class="d-none d-lg-block col-lg-3">
		{% include docs/menu.html %}
C
codecalm 已提交
13
	</div>
C
chomik 已提交
14
	<div class="col-lg-9">
C
codecalm 已提交
15 16 17 18
		{% if page.banner == 'icons' %}
		{% include cards/icons-banner.html class="mb-3" %}
		{% endif %}

C
codecalm 已提交
19 20
		<div class="card card-lg">
			<div class="card-body">
C
chomik 已提交
21
				<div class="markdown">
C
codecalm 已提交
22
					<div>
C
codecalm 已提交
23 24
						<div class="d-flex mb-3">
							<h1 class="m-0">{{ page.title }}</h1>
C
codecalm 已提交
25 26

							{% if page.bootstrap-link %}
27
							<p class="ms-auto">
C
codecalm 已提交
28
								<a href="https://getbootstrap.com/docs/5.0/{{ page.bootstrap-link }}" target="_blank" class="d-flex align-items-center">
29
									{% include ui/icon.html icon="external-link" color="blue" class="pe-1" %}
C
codecalm 已提交
30 31 32 33 34 35 36
									Bootstrap documentation
								</a>
							</p>
							{% endif %}
						</div>

						{% if page.description %}
C
codecalm 已提交
37
						<p class="mb-4 text-muted">{{ page.description }}</p>
C
codecalm 已提交
38
						{% endif %}
C
codecalm 已提交
39 40 41 42

						{% if page.plugin %}
						{% include docs/plugin.html plugin=page.plugin %}
						{% endif %}
C
chomik 已提交
43
					</div>
C
codecalm 已提交
44

C
codecalm 已提交
45
					{{ content }}
C
chomik 已提交
46 47 48 49 50
				</div>
			</div>
		</div>
	</div>
</div>