1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-01 07:54:38 +04:00

lists, page title fixes

This commit is contained in:
codecalm
2020-01-12 21:53:20 +01:00
parent 7cc0b87e1e
commit daec3d43f5
5 changed files with 29 additions and 17 deletions
+3
View File
@@ -31,6 +31,9 @@ base:
carousel:
title: Carousel
url: carousel.html
lists:
title: Lists
url: lists.html
users:
title: Users
url: users.html
+15
View File
@@ -0,0 +1,15 @@
---
menu: base.lists
title: Lists
page-title: Lists
---
<div class="row">
<div class="col-md-6">
{% include cards/users-list-2.html %}
{% include cards/users-list.html offset=8 checkbox=true title="Contacts" %}
</div>
<div class="col-md-6">
{% include cards/users-list.html hoverable=true checked-ids="2,5,8" %}
</div>
</div>
+9 -15
View File
@@ -4,6 +4,14 @@ menu: a.b.c
---
<div class="row">
<div class="col-md-6 col-xl-4">
{% assign person = site.data.people[0] %}
<div class="card">
<div class="card-body">
<h3 class="card-title">{{ person.full_name }}</h3>
</div>
</div>
</div>
<div class="col-md-6 col-xl-4">
{% include cards/small-stats.html chart-type="bar" chart-data="20,40,30,40,60,80,70" color="red" icon="heart" %}
</div>
@@ -11,20 +19,6 @@ menu: a.b.c
{% include cards/small-stats.html chart-type="bar" chart-data="5,8,2,5,-1,3,5,3" color="blue" icon="heart" %}
</div>
{% for chart in site.data.charts %}
{% if chart[1].demo %}
<div class="col-md-6 col-xl-4">
<div class="card">
<div class="card-body">
{% assign chart-id = chart[0] %}
<p>{{ chart-id }}</p>
{% include ui/chart.html chart-id=chart-id height=15 %}
</div>
</div>
</div>
{% endif %}
{% endfor %}
<div class="col-12">
<div class="card">
<div class="card-body">
@@ -67,4 +61,4 @@ menu: a.b.c
</div>
</div>
</div>
</div>
</div>