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

Monorepo structure, remove Gulp, new build process (#2116)

This commit is contained in:
Paweł Kuna
2025-02-01 21:05:00 +01:00
committed by GitHub
parent ce98145fb2
commit eaa7f81604
2071 changed files with 1543 additions and 5560 deletions
+41
View File
@@ -0,0 +1,41 @@
---
layout: base
---
{% assign no-container = page.no-container | default: layout.no-container %}
<div class="page">
{% if layout-sidebar %}
<!-- Sidebar -->
{% include "layout/sidebar.html" dark=layout-sidebar-dark right=layout-sidebar-right transparent=layout-navbar-transparent breakpoint="lg" %}
{% endif %}
{% unless layout-hide-topbar %}
<!-- Navbar -->
{% include "layout/navbar.html" condensed=layout-navbar-condensed overlap=layout-navbar-overlap dark=layout-navbar-dark hide-brand=layout-navbar-hide-brand hide-menu=layout-navbar-hide-menu sticky=layout-navbar-sticky transparent=layout-topbar-transparent class=layout-navbar-class %}
{% endunless %}
<div class="page-wrapper{% if layout-wrapper-full %} page-wrapper-full{% endif %}">
{% include "layout/page-header.html" %}
<!-- Page body -->
<div class="page-body">
{% if layout-wrapper-full %}
{{ content }}
{% else %}
{% unless no-container %}
<div class="container-xl{% if page-container-centered %} my-auto{% endif %}{% if page-container-class %} {{ page-container-class }}{% endif %}">
{% endunless %}
{{ content }}
{% unless no-container %}
</div>
{% endunless %}
{% endif %}
</div>
{% include "layout/footer.html" %}
</div>
</div>
{% comment %}{% include "settings.html" %}{% endcomment %}