1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00
Files
tabler/src/pages/_docs/index.html
2022-09-26 23:47:44 +02:00

28 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: Introduction
menu: help.docs.index
redirect_from: docs.html
---
<p>Tabler is a UI kit that speeds up the development process and makes it easier than ever! Built on the latest version of Bootstrap, it helps you create templates based on fully customizable and ready-to-use UI components, which can be used by both simple websites and sophisticated systems. With basic knowledge of HTML and CSS, youll be able to create dashboards that are fully functional and beautifully designed!</p>
<div class="mt-4">
<div class="row">
{% for doc in site.data.docs %}
{% unless doc[1].hide-in-index %}
<div class="{% if doc[1].columns == 2 %}col-12{% else %}col-sm-6{% endif %}">
<h3>{{ doc[1].title }}</h3>
<ul class="list-unstyled{% if doc[1].columns %} columns-md-{{ doc[1].columns }}{% endif %}">
{% for item in doc[1].children %}
<li>
- <a href="{{ site.base }}{{ item[1].url | relative_url }}">{{ item[1].title }}</a>
</li>
{% endfor %}
</ul>
</div>
{% endunless %}
{% endfor %}
</div>
</div>