1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-13 14:52:22 +04:00

jekyll dirs

This commit is contained in:
codecalm
2018-02-19 20:17:02 +01:00
parent aa82b7c959
commit 97f6ca9194
838 changed files with 56 additions and 90610 deletions
+40
View File
@@ -0,0 +1,40 @@
---
layout: default
menu: docs
title: Documentation
---
<div class="container">
{% include page-title.html title="Documentation" %}
<div class="row">
<div class="col-lg-3">
<div class="card">
<div class="card-body">
<ul class="list">
{% for doc in site.docs %}
<li><a href="{{ site.base }}{{ doc.url }}">{{ doc.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</div>
<div class="col-lg-9">
<div class="card">
<div class="card-body">
<div class="text-wrap">
<h2 class="mt-0 mb-4">{{ page.title }}</h2>
{% if page.toc %}
{{ content | toc_only }}
{% endif %}
{{ content }}
</div>
</div>
</div>
</div>
</div>
</div>