mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
43 lines
852 B
HTML
43 lines
852 B
HTML
---
|
|
layout: default
|
|
menu: docs
|
|
title: Documentation
|
|
---
|
|
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-10">
|
|
<div class="card">
|
|
<div class="card-body p-lg-5">
|
|
|
|
<div class="markdown">
|
|
<h2 class="h1 mt-0 mb-4">{{ page.title }}</h2>
|
|
|
|
{% if page.description %}
|
|
<p>{{ page.description }}</p>
|
|
{% endif %}
|
|
|
|
{% if page.in_progress %}
|
|
<div class="alert alert-primary mt-5 mb-6">
|
|
<div><strong>Work in progress!</strong> More detailed documentation is coming soon.</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if page.toc %}
|
|
{{ content | toc_only }}
|
|
{% endif %}
|
|
|
|
{{ content | toc_generate }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('[data-toggle="tooltip"]').tooltip();
|
|
$('[data-toggle="popover"]').popover();
|
|
});
|
|
</script>
|