mirror of
https://github.com/tabler/tabler.git
synced 2026-07-24 03:54:42 +04:00
navbar demo, prepare to merge
This commit is contained in:
+2
-65
@@ -28,69 +28,6 @@ tabler-plugins:
|
||||
exclude:
|
||||
- .jekyll-cache
|
||||
|
||||
- 400.html
|
||||
- 401.html
|
||||
- 403.html
|
||||
- 404.html
|
||||
- 500.html
|
||||
- 503.html
|
||||
- all.html
|
||||
- blog.html
|
||||
- buttons.html
|
||||
- calendar.html
|
||||
- cards.html
|
||||
- carousel.html
|
||||
- changelog.html
|
||||
- charts.html
|
||||
- charts-heatmap.html
|
||||
- components.html
|
||||
- crypto-currencies.html
|
||||
- docs.html
|
||||
- dropdowns.html
|
||||
- email.html
|
||||
- favicon.ico
|
||||
- flags.html
|
||||
- forgot-password.html
|
||||
- form-elements.html
|
||||
- gallery.html
|
||||
- icons.html
|
||||
- index.html
|
||||
- invoice.html
|
||||
- license.html
|
||||
- lists.html
|
||||
- lookup.html
|
||||
- maintenance.html
|
||||
- maps.html
|
||||
- maps-vector.html
|
||||
- markdown.md
|
||||
- modals.html
|
||||
- music.html
|
||||
- pagination.html
|
||||
- pricing.html
|
||||
- profile.html
|
||||
- ribbons.html
|
||||
- rtl.html
|
||||
- search-results.html
|
||||
- sign-in.html
|
||||
- sign-up.html
|
||||
- sitemap.xml
|
||||
- snippets.html
|
||||
- social.html
|
||||
- store.html
|
||||
- tables.html
|
||||
- tabs.html
|
||||
- terms-of-service.html
|
||||
- tmp.html
|
||||
- tmp2.html
|
||||
- tmp3.html
|
||||
- tmp4.html
|
||||
- tmp-dark.html
|
||||
- tmp-forms.html
|
||||
- typography.html
|
||||
- user-edit.html
|
||||
- users.html
|
||||
- welcome.html
|
||||
|
||||
keep_files:
|
||||
- css/ui-kit.css
|
||||
- css/dark.css
|
||||
@@ -111,8 +48,8 @@ toc:
|
||||
list_class: list-unstyled
|
||||
|
||||
collections:
|
||||
# docs:
|
||||
# output: true
|
||||
docs:
|
||||
output: true
|
||||
# changelog:
|
||||
# output: false
|
||||
# components:
|
||||
|
||||
@@ -33,6 +33,9 @@ base:
|
||||
maps-vector:
|
||||
url: maps-vector.html
|
||||
title: Vector maps
|
||||
navigation:
|
||||
url: navigation.html
|
||||
title: Navigation
|
||||
charts:
|
||||
url: charts.html
|
||||
title: Charts
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
{% comment %}
|
||||
|
||||
{% if site.data.libs.css %}
|
||||
<!-- Libs CSS -->
|
||||
{% for lib in site.data.libs.css %}
|
||||
@@ -9,18 +7,12 @@
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% endcomment %}
|
||||
|
||||
<!-- Tabler Core -->
|
||||
<link href="{{ site.base }}/{% if jekyll.environment == 'development' %}tmp-{% endif %}dist/css/tabler{% if jekyll.environment == 'production' %}.min{% endif %}.css{% if site.preview %}?{{ site.time | date: '%s' }}{% endif %}" rel="stylesheet"/>
|
||||
|
||||
{% comment %}
|
||||
|
||||
<!-- Tabler Plugins -->
|
||||
{% for plugin in site.tabler-plugins %}
|
||||
<link href="{{ site.base }}/{% if jekyll.environment == 'development' %}tmp-{% endif %}dist/css/{{ plugin }}{% if jekyll.environment == 'production' %}.min{% endif %}.css{% if site.preview %}?{{ site.time | date: '%s' }}{% endif %}" rel="stylesheet"/>
|
||||
{% endfor %}
|
||||
|
||||
{% endcomment %}
|
||||
|
||||
<link href="{{ site.base }}/{% if jekyll.environment == 'development' %}tmp-{% endif %}dist/css/demo{% if jekyll.environment == 'production' %}.min{% endif %}.css{% if site.preview %}?{{ site.time | date: '%s' }}{% endif %}" rel="stylesheet"/>
|
||||
@@ -53,13 +53,11 @@
|
||||
|
||||
{% include layout/js.html %}
|
||||
|
||||
{% comment %}
|
||||
{% include layout/js-capture.html %}
|
||||
|
||||
{% if site.debug and jekyll.environment == 'development' %}
|
||||
{% include layout/debug.html %}
|
||||
{% endif %}
|
||||
{% endcomment %}
|
||||
|
||||
<script>document.body.style.display = "block"</script>
|
||||
</body>
|
||||
|
||||
@@ -2,11 +2,8 @@
|
||||
layout: base
|
||||
---
|
||||
|
||||
{% include layout/sidebar.html %}
|
||||
|
||||
<div class="page">
|
||||
{% include layout/navbar.html hide-brand=true hide-menu=true class="d-none d-lg-flex" %}
|
||||
{% include layout/navbar.html secondary=true %}
|
||||
{% include layout/content.html %}
|
||||
</div>
|
||||
|
||||
{% include ui/modal.html modal-id="customize" top=true %}
|
||||
|
||||
+1
-24
@@ -5,27 +5,4 @@ menu: base.empty
|
||||
page-header: Empty page
|
||||
---
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
{% for i in (1..6) %}
|
||||
<h{{ i }}>Heading {{ i }}</h{{ i }}>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam autem cum sed voluptatem. Amet asperiores dolores eaque, est eveniet, impedit iusto magni modi molestiae nesciunt non perspiciatis, possimus similique tempora!</p>
|
||||
{% endfor %}
|
||||
|
||||
<div>
|
||||
{% include ui/button.html text="Button" color="primary" icon="star" %}
|
||||
{% include ui/button.html text="Button" color="secondary" icon="check" %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Content here -->
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
menu: home
|
||||
menu: base.navigation
|
||||
page-header: Navigation
|
||||
---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user