mirror of
https://github.com/tabler/tabler.git
synced 2025-12-24 18:58:15 +04:00
50 lines
1.4 KiB
HTML
50 lines
1.4 KiB
HTML
---
|
|
layout: default
|
|
menu: docs
|
|
title: Documentation
|
|
---
|
|
|
|
<div class="container">
|
|
{% include page-title.html title="Documentation" %}
|
|
|
|
<div class="row">
|
|
<div class="col-lg-3 order-lg-1 mb-5">
|
|
<a href="{{ site.github-url }}" class="btn btn-block btn-primary mb-5">
|
|
<i class="fe fe-github mr-2"></i>Browse source code
|
|
</a>
|
|
|
|
<div class="list-group list-group-transparent">
|
|
{% for doc in site.docs %}
|
|
{% unless doc.hide %}<a href="{{ site.base }}{{ doc.url }}" class="list-group-item list-group-item-action{% if page.url == doc.url %} active{% endif %}"><span class="icon mr-3"><i class="{{ doc.icon }}"></i></span>{{ doc.title }}</a>{% endunless %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-9">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
|
|
<div class="text-wrap p-lg-6">
|
|
<h2 class="mt-0 mb-4">{{ page.title }}</h2>
|
|
|
|
{% if page.description %}
|
|
<p>{{ page.description }}</p>
|
|
{% endif %}
|
|
|
|
{% if page.in_progress %}
|
|
<div class="alert alert-info mt-5 mb-6">
|
|
<h4 class="mb-1">Work in progress!</h4>
|
|
<div>More detailed documentation is coming soon, but in the meantime here's a quick class reference.</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if page.toc %}
|
|
{{ content | toc_only }}
|
|
{% endif %}
|
|
|
|
{{ content | toc_generate }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |