From 27e114613df751f943b3969b0c6df3869e44ebfa Mon Sep 17 00:00:00 2001 From: codecalm Date: Sun, 29 Dec 2019 14:12:00 +0100 Subject: [PATCH] build time increase --- pages/_components/card-buttons.html | 2 +- pages/_components/card-comments.html | 2 +- pages/_components/card-tabs-bottom.html | 2 +- pages/_components/card-with-image.html | 2 +- pages/_components/simple-avatar.html | 2 +- pages/_components/simple-card.html | 2 +- pages/_components/widget-revenue.html | 2 +- pages/_components/widget-sales.html | 2 +- pages/_data/menu.yml | 8 +- pages/_docs/avatars.md | 74 ++++++------ pages/_docs/cards.md | 16 +-- pages/_docs/tabs.md | 12 +- pages/_docs/timelines.md | 4 +- pages/_includes/cards/blog-single.html | 2 +- pages/_includes/cards/card-group.html | 6 +- pages/_includes/cards/comments.html | 2 +- pages/_includes/cards/company-employees.html | 2 +- .../_includes/cards/development-activity.html | 10 +- pages/_includes/cards/feed-card.html | 2 +- pages/_includes/cards/gallery.html | 4 +- pages/_includes/cards/profile-2.html | 2 +- pages/_includes/cards/profile-timeline.html | 14 +-- pages/_includes/cards/project-summary.html | 2 +- pages/_includes/cards/small-stats.html | 2 +- pages/_includes/cards/subscribe.html | 2 +- pages/_includes/cards/table-users.html | 2 +- pages/_includes/cards/tasks.html | 2 +- pages/_includes/cards/timeline.html | 2 +- pages/_includes/cards/user-card-bg.html | 2 +- pages/_includes/cards/user-card-big.html | 2 +- pages/_includes/cards/user-card.html | 2 +- pages/_includes/cards/users-list-2.html | 2 +- pages/_includes/cards/users-list.html | 2 +- pages/_includes/layout/homepage.html | 38 +++--- pages/_includes/layout/menu-aside.html | 2 +- pages/_includes/layout/navbar.html | 2 +- pages/_includes/layout/sidebar.html | 4 +- .../_includes/parts/input-icon-separated.html | 4 +- pages/_includes/ui/alert.html | 2 +- pages/_includes/ui/avatar-list.html | 4 +- pages/_includes/ui/toast.html | 2 +- pages/blog.html | 8 +- pages/cards.html | 52 ++++---- pages/carousel.html | 8 +- pages/charts-heatmap.html | 8 +- pages/datatables.html | 2 +- pages/email.html | 114 +++++++++--------- pages/forgot-password.html | 2 +- pages/gallery.html | 2 +- pages/homepage.html | 12 +- pages/invoice.html | 2 +- pages/login.html | 2 +- pages/lookup.html | 2 +- pages/music.html | 1 + pages/pricing.html | 8 +- pages/profile.html | 22 ++-- pages/register.html | 2 +- pages/rtl.html | 8 +- pages/snippets.html | 74 ++++++------ pages/social.html | 14 +-- pages/store.html | 6 +- pages/tabs.html | 22 ++-- pages/tmp.html | 14 +-- pages/users.html | 2 +- 64 files changed, 322 insertions(+), 319 deletions(-) diff --git a/pages/_components/card-buttons.html b/pages/_components/card-buttons.html index 5692c01f..595fb9a7 100644 --- a/pages/_components/card-buttons.html +++ b/pages/_components/card-buttons.html @@ -3,4 +3,4 @@ title: Card with footer buttons columns: 2 --- -{% include cards/card.html title="Card with footer buttons" footer-buttons=true %} +{% include_cached cards/card.html title="Card with footer buttons" footer-buttons=true %} diff --git a/pages/_components/card-comments.html b/pages/_components/card-comments.html index 251603e3..fcff290b 100644 --- a/pages/_components/card-comments.html +++ b/pages/_components/card-comments.html @@ -3,4 +3,4 @@ title: Comments card columns: 2 --- -{% include cards/comments.html %} +{% include_cached cards/comments.html %} diff --git a/pages/_components/card-tabs-bottom.html b/pages/_components/card-tabs-bottom.html index 7978cc07..57857123 100644 --- a/pages/_components/card-tabs-bottom.html +++ b/pages/_components/card-tabs-bottom.html @@ -3,4 +3,4 @@ title: Card with bottom tabs columns: 2 --- -{% include cards/card-tabs.html count=4 bottom=true id="bottom" %} +{% include_cached cards/card-tabs.html count=4 bottom=true id="bottom" %} diff --git a/pages/_components/card-with-image.html b/pages/_components/card-with-image.html index cc56b834..bc392e70 100644 --- a/pages/_components/card-with-image.html +++ b/pages/_components/card-with-image.html @@ -3,4 +3,4 @@ title: Card with side image columns: 2 --- -{% include cards/card-image.html title="Card with side image" %} +{% include_cached cards/card-image.html title="Card with side image" %} diff --git a/pages/_components/simple-avatar.html b/pages/_components/simple-avatar.html index 1ae634dd..d9ea2db2 100644 --- a/pages/_components/simple-avatar.html +++ b/pages/_components/simple-avatar.html @@ -3,4 +3,4 @@ title: Simple avatar markdown: false --- -{% include ui/avatar.html person-id=1 status="green" %} +{% include_cached ui/avatar.html person-id=1 status="green" %} diff --git a/pages/_components/simple-card.html b/pages/_components/simple-card.html index 1499d1bc..76870592 100644 --- a/pages/_components/simple-card.html +++ b/pages/_components/simple-card.html @@ -3,4 +3,4 @@ title: Simple box columns: 1 --- -{% include cards/card.html %} +{% include_cached cards/card.html %} diff --git a/pages/_components/widget-revenue.html b/pages/_components/widget-revenue.html index 1aa37648..8d779835 100644 --- a/pages/_components/widget-revenue.html +++ b/pages/_components/widget-revenue.html @@ -2,4 +2,4 @@ title: Revenue chart --- -{% include cards/charts/revenue.html %} +{% include_cached cards/charts/revenue.html %} diff --git a/pages/_components/widget-sales.html b/pages/_components/widget-sales.html index 6b76222b..5ba7b332 100644 --- a/pages/_components/widget-sales.html +++ b/pages/_components/widget-sales.html @@ -3,4 +3,4 @@ title: Sales widget columns: 1 --- -{% include cards/charts/sales.html %} +{% include_cached cards/charts/sales.html %} diff --git a/pages/_data/menu.yml b/pages/_data/menu.yml index 89c2173c..633cf227 100644 --- a/pages/_data/menu.yml +++ b/pages/_data/menu.yml @@ -63,12 +63,16 @@ base: url: carousel.html users: title: Users - icon: users url: users.html gallery: title: Gallery - icon: image url: gallery.html + profile: + title: Profile + url: profile.html + music: + title: Music + url: music.html charts: url: charts.html diff --git a/pages/_docs/avatars.md b/pages/_docs/avatars.md index e3ae3ef0..8eeb6f80 100644 --- a/pages/_docs/avatars.md +++ b/pages/_docs/avatars.md @@ -8,9 +8,9 @@ done: true ### Default markup {% example html wrapper=avatar-list %} -{% include ui/avatar.html person-id=1 %} -{% include ui/avatar.html person-id=2 %} -{% include ui/avatar.html person-id=3 %} +{% include_cached ui/avatar.html person-id=1 %} +{% include_cached ui/avatar.html person-id=2 %} +{% include_cached ui/avatar.html person-id=3 %} {% endexample %} ### Avatar image @@ -18,9 +18,9 @@ done: true Set an image as the background. {% example html wrapper=avatar-list %} -{% include ui/avatar.html person-id=1 %} -{% include ui/avatar.html person-id=3 %} -{% include ui/avatar.html person-id=4 %} +{% include_cached ui/avatar.html person-id=1 %} +{% include_cached ui/avatar.html person-id=3 %} +{% include_cached ui/avatar.html person-id=4 %} {% endexample %} ### Initials @@ -28,11 +28,11 @@ Set an image as the background. You can easily use initials instead of images. {% example html wrapper=avatar-list %} -{% include ui/avatar.html placeholder="AB" %} -{% include ui/avatar.html placeholder="CD" %} -{% include ui/avatar.html placeholder="EF" %} -{% include ui/avatar.html placeholder="GH" %} -{% include ui/avatar.html placeholder="IJ" %} +{% include_cached ui/avatar.html placeholder="AB" %} +{% include_cached ui/avatar.html placeholder="CD" %} +{% include_cached ui/avatar.html placeholder="EF" %} +{% include_cached ui/avatar.html placeholder="GH" %} +{% include_cached ui/avatar.html placeholder="IJ" %} {% endexample %} ### Avatar icons @@ -40,9 +40,9 @@ You can easily use initials instead of images. You can also use icons in avatars. {% example html wrapper=avatar-list %} -{% include ui/avatar.html icon="user" %} -{% include ui/avatar.html icon="plus" %} -{% include ui/avatar.html icon="user-plus" %} +{% include_cached ui/avatar.html icon="user" %} +{% include_cached ui/avatar.html icon="plus" %} +{% include_cached ui/avatar.html icon="user-plus" %} {% endexample %} ### Avatar initials color @@ -50,11 +50,11 @@ You can also use icons in avatars. Customize the color of the avatars' background. You can click [here]({% docs_url colors %}) to see the list of available colors. {% example html wrapper=avatar-list %} -{% include ui/avatar.html placeholder="AB" color="green" %} -{% include ui/avatar.html placeholder="CD" color="red" %} -{% include ui/avatar.html placeholder="EF" color="yellow" %} -{% include ui/avatar.html placeholder="GH" color="blue" %} -{% include ui/avatar.html placeholder="IJ" color="purple" %} +{% include_cached ui/avatar.html placeholder="AB" color="green" %} +{% include_cached ui/avatar.html placeholder="CD" color="red" %} +{% include_cached ui/avatar.html placeholder="EF" color="yellow" %} +{% include_cached ui/avatar.html placeholder="GH" color="blue" %} +{% include_cached ui/avatar.html placeholder="IJ" color="purple" %} {% endexample %} ### Avatar size @@ -62,11 +62,11 @@ Customize the color of the avatars' background. You can click [here]({% docs_url Using Bootstrap’s typical naming structure, you can create a standard avatar, or scale it up to different sizes based on what’s needed. {% example html wrapper=avatar-list %} -{% include ui/avatar.html person-id=10 size="xl" %} -{% include ui/avatar.html person-id=9 size="lg" %} -{% include ui/avatar.html person-id=8 size="md" %} -{% include ui/avatar.html person-id=7 %} -{% include ui/avatar.html person-id=6 size="sm" %} +{% include_cached ui/avatar.html person-id=10 size="xl" %} +{% include_cached ui/avatar.html person-id=9 size="lg" %} +{% include_cached ui/avatar.html person-id=8 size="md" %} +{% include_cached ui/avatar.html person-id=7 %} +{% include_cached ui/avatar.html person-id=6 size="sm" %} {% endexample %} ### Avatar status @@ -74,12 +74,12 @@ Using Bootstrap’s typical naming structure, you can create a standard avatar, Add an online or offline status indicator to show user's availability. {% example html wrapper=avatar-list %} -{% include ui/avatar.html person-id=11 %} -{% include ui/avatar.html person-id=12 status="danger" %} -{% include ui/avatar.html person-id=13 status="success" %} -{% include ui/avatar.html person-id=14 status="warning" %} -{% include ui/avatar.html person-id=15 status="info" %} -{% include ui/avatar.html person-id=16 status="gray" status-text="5" %} +{% include_cached ui/avatar.html person-id=11 %} +{% include_cached ui/avatar.html person-id=12 status="danger" %} +{% include_cached ui/avatar.html person-id=13 status="success" %} +{% include_cached ui/avatar.html person-id=14 status="warning" %} +{% include_cached ui/avatar.html person-id=15 status="info" %} +{% include_cached ui/avatar.html person-id=16 status="gray" status-text="5" %} {% endexample %} ### Avatar shape @@ -87,11 +87,11 @@ Add an online or offline status indicator to show user's availability. Change the shape of an avatar with the default Bootstrap image classes. {% example html wrapper=avatar-list %} -{% include ui/avatar.html person-id=17 %} -{% include ui/avatar.html person-id=18 shape="rounded" %} -{% include ui/avatar.html person-id=19 shape="rounded-circle" %} -{% include ui/avatar.html person-id=20 shape="rounded-0" %} -{% include ui/avatar.html person-id=21 shape="rounded-lg" %} +{% include_cached ui/avatar.html person-id=17 %} +{% include_cached ui/avatar.html person-id=18 shape="rounded" %} +{% include_cached ui/avatar.html person-id=19 shape="rounded-circle" %} +{% include_cached ui/avatar.html person-id=20 shape="rounded-0" %} +{% include_cached ui/avatar.html person-id=21 shape="rounded-lg" %} {% endexample %} ### Avatars list @@ -109,8 +109,8 @@ Make the list stack when it reaches a certain length. {% example %}
{% for person in site.data.people limit: 5 offset: 30 %} - {% include ui/avatar.html person=person element="a" %} + {% include_cached ui/avatar.html person=person element="a" %} {% endfor %} +8
-{% endexample %} \ No newline at end of file +{% endexample %} diff --git a/pages/_docs/cards.md b/pages/_docs/cards.md index 0e2810d7..186e5ed2 100644 --- a/pages/_docs/cards.md +++ b/pages/_docs/cards.md @@ -11,20 +11,20 @@ The `.card` element is simply a container with a shadow, a border, a radius, and ### Default card {% example html columns=1 %} -{% include cards/card.html body="This is some text within a card body." %} +{% include_cached cards/card.html body="This is some text within a card body." %} {% endexample %} ### Card with title and image {% example html columns=1 %} -{% include cards/card.html img-top=true title="Card with title and image" %} +{% include_cached cards/card.html img-top=true title="Card with title and image" %} {% endexample %} ### Blog post card The best way to make your post eye-catching is adding an image to it. To do so, just add the image with the `.card-img-top` class. We've added the `.d-flex .flex-column` classes to the `.card-body` to have the author details be on the bottom of the card. {% example html columns=1 %} -{% include cards/blog-single.html type="image" %} +{% include_cached cards/blog-single.html type="image" %} {% endexample %} ### Row deck @@ -56,7 +56,7 @@ If you want to create a couple of posts next to each other, add the `.row-deck` You can also add the image on the left side of the card. All you need do to is: add the `.card-aside` class to the element with the `.card` class. Then add the image in the `.card-aside-column` element. No worries, tabler will automatically center it and scale to right size: {% example html columns=3 %} -{% include cards/blog-single.html type="aside" liked=1 article-id=3 %} +{% include_cached cards/blog-single.html type="aside" liked=1 article-id=3 %} {% endexample %} ### Color variations @@ -64,10 +64,10 @@ You can also add the image on the left side of the card. All you need do to is: {% example html columns=3 %}
- {% include cards/card.html status-top="danger" title="Card with top status" %} + {% include_cached cards/card.html status-top="danger" title="Card with top status" %}
- {% include cards/card.html status-left="green" title="Card with side status" %} + {% include_cached cards/card.html status-left="green" title="Card with side status" %}
{% endexample %} @@ -75,12 +75,12 @@ You can also add the image on the left side of the card. All you need do to is: ### Stacked card {% example html columns=1 %} -{% include cards/card.html class="card-stacked" title="Stacked card" %} +{% include_cached cards/card.html class="card-stacked" title="Stacked card" %} {% endexample %} ## Tabbed card {% example html columns=2 %} -{% include cards/card-tabs.html count=4 %} +{% include_cached cards/card-tabs.html count=4 %} {% endexample %} diff --git a/pages/_docs/tabs.md b/pages/_docs/tabs.md index fe5a82de..f534bdf4 100644 --- a/pages/_docs/tabs.md +++ b/pages/_docs/tabs.md @@ -7,35 +7,35 @@ bootstrap-link: components/navs/ ### Default markup {% example html columns=1 %} -{% include cards/tabs.html id="ex1" %} +{% include_cached cards/tabs.html id="ex1" %} {% endexample %} ### Tabs with icons {% example html columns=1 %} -{% include cards/tabs.html icons=true settings=true id="ex2" %} +{% include_cached cards/tabs.html icons=true settings=true id="ex2" %} {% endexample %} ### Tabs only with icons {% example html columns=1 %} -{% include cards/tabs.html icons=true settings=true hide-text=true id="ex3" %} +{% include_cached cards/tabs.html icons=true settings=true hide-text=true id="ex3" %} {% endexample %} ### Tabs with dropdown {% example html columns=1 %} -{% include cards/tabs.html dropdown=true id="ex4" %} +{% include_cached cards/tabs.html dropdown=true id="ex4" %} {% endexample %} ### Full-width tabs {% example html columns=1 %} -{% include cards/tabs.html justified=true icons=true hide-text=true activity=true id="ex5" %} +{% include_cached cards/tabs.html justified=true icons=true hide-text=true activity=true id="ex5" %} {% endexample %} ### Alternate style {% example html columns=1 %} -{% include cards/tabs.html icons=true alternative=true settings=true id="ex6" %} +{% include_cached cards/tabs.html icons=true alternative=true settings=true id="ex6" %} {% endexample %} diff --git a/pages/_docs/timelines.md b/pages/_docs/timelines.md index 131d4520..01dd7ec5 100644 --- a/pages/_docs/timelines.md +++ b/pages/_docs/timelines.md @@ -5,10 +5,10 @@ menu: docs.timelines ### Timeline {% example html columns=3 %} - {% include cards/timeline.html %} + {% include_cached cards/timeline.html %} {% endexample %} ### Simple Timeline {% example html columns=1 %} - {% include cards/timeline.html simple=true %} + {% include_cached cards/timeline.html simple=true %} {% endexample %} diff --git a/pages/_includes/cards/blog-single.html b/pages/_includes/cards/blog-single.html index 1fa8bbee..78300b9b 100644 --- a/pages/_includes/cards/blog-single.html +++ b/pages/_includes/cards/blog-single.html @@ -12,7 +12,7 @@
{{ article.description | truncate: truncate }}
- {% include ui/avatar.html person-id=avatar size="md" %} + {% include_cached ui/avatar.html person-id=avatar size="md" %}
{{ author.first_name }} {{ author.last_name }} 3 days ago diff --git a/pages/_includes/cards/card-group.html b/pages/_includes/cards/card-group.html index 68f58b75..881b8cd4 100644 --- a/pages/_includes/cards/card-group.html +++ b/pages/_includes/cards/card-group.html @@ -1,5 +1,5 @@
- {% include cards/card.html link=true class="text-center" body="This is first card" inactive=true %} - {% include cards/card.html link=true class="text-center" body="This is second card" active=true %} - {% include cards/card.html link=true class="text-center" body="This is third card" %} + {% include_cached cards/card.html link=true class="text-center" body="This is first card" inactive=true %} + {% include_cached cards/card.html link=true class="text-center" body="This is second card" active=true %} + {% include_cached cards/card.html link=true class="text-center" body="This is third card" %}
diff --git a/pages/_includes/cards/comments.html b/pages/_includes/cards/comments.html index 5b030487..e57da163 100644 --- a/pages/_includes/cards/comments.html +++ b/pages/_includes/cards/comments.html @@ -7,7 +7,7 @@ {% for person in site.data.people limit: 3 %}
- {% include ui/avatar.html person=person status="green" %} + {% include_cached ui/avatar.html person=person status="green" %}
diff --git a/pages/_includes/cards/company-employees.html b/pages/_includes/cards/company-employees.html index 9afb9b02..4b1b85ad 100644 --- a/pages/_includes/cards/company-employees.html +++ b/pages/_includes/cards/company-employees.html @@ -12,7 +12,7 @@ {% for person in site.data.people limit: 5 offset: 20 %} - {% include ui/avatar.html src=person.photo %} + {% include_cached ui/avatar.html src=person.photo %} {{ person.full_name }} {{ person.department }} {{ forloop.index | random_number: 30, 90 }}% diff --git a/pages/_includes/cards/development-activity.html b/pages/_includes/cards/development-activity.html index c07357d5..63bf4f73 100644 --- a/pages/_includes/cards/development-activity.html +++ b/pages/_includes/cards/development-activity.html @@ -13,7 +13,7 @@ - {% include ui/avatar.html person-id=10 %} + {% include_cached ui/avatar.html person-id=10 %} {{ site.data.people[10].full_name }} Initial commit @@ -21,7 +21,7 @@ - {% include ui/avatar.html person-id=17 %} + {% include_cached ui/avatar.html person-id=17 %} {{ site.data.people[17].full_name }} Main structure @@ -29,7 +29,7 @@ - {% include ui/avatar.html person-id=16 %} + {% include_cached ui/avatar.html person-id=16 %} {{ site.data.people[16].full_name }} Left sidebar adjustments @@ -37,7 +37,7 @@ - {% include ui/avatar.html person-id=12 %} + {% include_cached ui/avatar.html person-id=12 %} {{ site.data.people[12].full_name }} Topbar dropdown style @@ -45,7 +45,7 @@ - {% include ui/avatar.html person-id=19 %} + {% include_cached ui/avatar.html person-id=19 %} {{ site.data.people[19].full_name }} Fixes #625 diff --git a/pages/_includes/cards/feed-card.html b/pages/_includes/cards/feed-card.html index 1092323c..87081541 100644 --- a/pages/_includes/cards/feed-card.html +++ b/pages/_includes/cards/feed-card.html @@ -3,7 +3,7 @@
- {% include ui/avatar.html person=person size="md" %} + {% include_cached ui/avatar.html person=person size="md" %}
{{ person.full_name }} diff --git a/pages/_includes/cards/gallery.html b/pages/_includes/cards/gallery.html index 459f5a5c..eedb4314 100644 --- a/pages/_includes/cards/gallery.html +++ b/pages/_includes/cards/gallery.html @@ -2,7 +2,7 @@
- {% include ui/avatar.html person=include.person class="mr-3 rounded" %} + {% include_cached ui/avatar.html person=include.person class="mr-3 rounded" %}
{{ include.person.full_name }}
{{ forloop.index | random_date_ago: 10 | timeago }}
@@ -19,4 +19,4 @@
-
\ No newline at end of file +
diff --git a/pages/_includes/cards/profile-2.html b/pages/_includes/cards/profile-2.html index d83403fc..5360012b 100644 --- a/pages/_includes/cards/profile-2.html +++ b/pages/_includes/cards/profile-2.html @@ -1,7 +1,7 @@
- {% include ui/avatar.html person-id=8 size="xl" %} + {% include_cached ui/avatar.html person-id=8 size="xl" %}

{{ site.data.people[20].first_name }} {{ site.data.people[20].last_name }}

{{ site.data.people[20].job_title }}

diff --git a/pages/_includes/cards/profile-timeline.html b/pages/_includes/cards/profile-timeline.html index 8d1dd116..efd59766 100644 --- a/pages/_includes/cards/profile-timeline.html +++ b/pages/_includes/cards/profile-timeline.html @@ -3,7 +3,7 @@
- {% include ui/button.html icon="camera" icon-only=true color="secondary" %} + {% include_cached ui/button.html icon="camera" icon-only=true color="secondary" %}
@@ -11,7 +11,7 @@
  • - {% include ui/avatar.html person-id=5 class="mr-3" %} + {% include_cached ui/avatar.html person-id=5 class="mr-3" %}
    @@ -28,7 +28,7 @@
    -
    \ No newline at end of file +
    diff --git a/pages/_includes/ui/alert.html b/pages/_includes/ui/alert.html index f470b051..3961674f 100644 --- a/pages/_includes/ui/alert.html +++ b/pages/_includes/ui/alert.html @@ -1,6 +1,6 @@ {% assign person = include.person %} -
  • +
    diff --git a/pages/forgot-password.html b/pages/forgot-password.html index 875461bc..30feaa66 100644 --- a/pages/forgot-password.html +++ b/pages/forgot-password.html @@ -3,4 +3,4 @@ title: Forgot password layout: single --- -{% include cards/forgot.html show-header="1" %} +{% include_cached cards/forgot.html show-header="1" %} diff --git a/pages/gallery.html b/pages/gallery.html index d876d332..ef2dd0e9 100644 --- a/pages/gallery.html +++ b/pages/gallery.html @@ -13,7 +13,7 @@ menu: gallery {% if photo.horizontal %} {% assign person = site.data.people[forloop.index0] %}
    - {% include cards/gallery.html person=person %} + {% include_cached cards/gallery.html person=person %}
    {% assign horizontal = horizontal | plus: 1 %} {% endif %} diff --git a/pages/homepage.html b/pages/homepage.html index f76ac74a..ce43539f 100644 --- a/pages/homepage.html +++ b/pages/homepage.html @@ -6,13 +6,13 @@ page-pretitle: Overview
    - {% include cards/project-summary.html %} - {% include cards/social-traffic.html %} + {% include_cached cards/project-summary.html %} + {% include_cached cards/social-traffic.html %} {% for person in site.data.people limit: 6 %}
    - {% include ui/avatar.html person=person class="mr-3" size="md" %} + {% include_cached ui/avatar.html person=person class="mr-3" size="md" %}
    {{ person.first_name }} created a new task
    {{ forloop.index | random_number: 1, 10 }}h ago
    @@ -22,8 +22,8 @@ page-pretitle: Overview {% endfor %}
    - {% include cards/tasks.html %} - {% include cards/company-employees.html %} - {% include cards/most-visited-pages.html %} + {% include_cached cards/tasks.html %} + {% include_cached cards/company-employees.html %} + {% include_cached cards/most-visited-pages.html %}
    diff --git a/pages/invoice.html b/pages/invoice.html index 343a0b83..bfc675a0 100644 --- a/pages/invoice.html +++ b/pages/invoice.html @@ -4,4 +4,4 @@ layout: default menu: extra.invoice --- -{% include cards/invoice.html %} +{% include_cached cards/invoice.html %} diff --git a/pages/login.html b/pages/login.html index e178851c..e0ecb270 100644 --- a/pages/login.html +++ b/pages/login.html @@ -3,4 +3,4 @@ layout: single title: Login --- -{% include cards/login.html show-header="1" %} +{% include_cached cards/login.html show-header="1" %} diff --git a/pages/lookup.html b/pages/lookup.html index 1ba53444..c620f468 100644 --- a/pages/lookup.html +++ b/pages/lookup.html @@ -11,6 +11,6 @@ layout: default Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium alias consequuntur cum dicta doloremque, enim eos illo ipsam labore laboriosam laborum perspiciatis quibusdam repudiandae sed sequi sit temporibus veniam, voluptatum.
    - {% include cards/company-lookup.html %} + {% include_cached cards/company-lookup.html %}
    diff --git a/pages/music.html b/pages/music.html index 904bcec3..688baac0 100644 --- a/pages/music.html +++ b/pages/music.html @@ -1,6 +1,7 @@ --- title: Music components page-title: Music components +menu: base.music ---
    diff --git a/pages/pricing.html b/pages/pricing.html index 63363ca5..e1190d44 100644 --- a/pages/pricing.html +++ b/pages/pricing.html @@ -6,15 +6,15 @@ done: true
    - {% include cards/pricing-card.html price="0" users=3 category="Free" %} + {% include_cached cards/pricing-card.html price="0" users=3 category="Free" %}
    - {% include cards/pricing-card.html price="49" users=10 category="Premium" features="1100" featured-color="green" %} + {% include_cached cards/pricing-card.html price="49" users=10 category="Premium" features="1100" featured-color="green" %}
    - {% include cards/pricing-card.html price="99" category="Enterprise" users=100 features="1110" %} + {% include_cached cards/pricing-card.html price="99" category="Enterprise" users=100 features="1110" %}
    - {% include cards/pricing-card.html price="139" category="Unlimited" users="Unlimited" features="1111" %} + {% include_cached cards/pricing-card.html price="139" category="Unlimited" users="Unlimited" features="1111" %}
    diff --git a/pages/profile.html b/pages/profile.html index 3fb6327f..1caee315 100644 --- a/pages/profile.html +++ b/pages/profile.html @@ -1,17 +1,17 @@ --- title: Profile +page-title: Profile +menu: base.profile --- -
    -
    -
    - {% include cards/profile.html %} - {% include cards/profile-2.html %} - {% include cards/profile-edit.html %} -
    -
    - {% include cards/profile-timeline.html %} - {% include cards/profile-edit-big.html %} -
    +
    +
    + {% include_cached cards/profile.html %} + {% include_cached cards/profile-2.html %} + {% include_cached cards/profile-edit.html %} +
    +
    + {% include_cached cards/profile-timeline.html %} + {% include_cached cards/profile-edit-big.html %}
    diff --git a/pages/register.html b/pages/register.html index 02dc2619..f447eac2 100644 --- a/pages/register.html +++ b/pages/register.html @@ -3,4 +3,4 @@ layout: single title: Register --- -{% include cards/register.html %} +{% include_cached cards/register.html %} diff --git a/pages/rtl.html b/pages/rtl.html index efe8c3ac..38ae6df9 100644 --- a/pages/rtl.html +++ b/pages/rtl.html @@ -19,18 +19,18 @@ menu: pages.rtl نتيجة لضعف إرادتهم فيتساوي مع هؤلاء الذين يتجنبون وينأون عن تحمل الكدح والألم . {% endcapture %} - {% include cards/card.html body=body title="عنوان البطاقة" %} + {% include_cached cards/card.html body=body title="عنوان البطاقة" %}
    - {% include cards/small-stats.html count=43 description="تذاكر جديدة" chart-type="pie" chart-data="45/100" %} + {% include_cached cards/small-stats.html count=43 description="تذاكر جديدة" chart-type="pie" chart-data="45/100" %}
    - {% include cards/small-stats.html count=17 description="مغلق اليوم" chart-type="pie" chart-data="22/100" %} + {% include_cached cards/small-stats.html count=17 description="مغلق اليوم" chart-type="pie" chart-data="22/100" %}
    - {% include cards/small-stats.html count="27.3K" description="متابعون" chart-type="pie" chart-data="75/100" %} + {% include_cached cards/small-stats.html count="27.3K" description="متابعون" chart-type="pie" chart-data="75/100" %}
    diff --git a/pages/snippets.html b/pages/snippets.html index 07674534..80ca7730 100644 --- a/pages/snippets.html +++ b/pages/snippets.html @@ -5,76 +5,76 @@ page-title-right: date ---
    -
    {% include cards/user-card.html person-id=5 %}
    -
    {% include cards/user-card.html person-id=6 %}
    -
    {% include cards/user-card.html person-id=7 right=true %}
    -
    {% include cards/user-card.html person-id=8 right=true %}
    +
    {% include_cached cards/user-card.html person-id=5 %}
    +
    {% include_cached cards/user-card.html person-id=6 %}
    +
    {% include_cached cards/user-card.html person-id=7 right=true %}
    +
    {% include_cached cards/user-card.html person-id=8 right=true %}
    -
    {% include cards/user-card-big.html person-id=15 %}
    -
    {% include cards/user-card-big.html person-id=16 %}
    -
    {% include cards/user-card-big.html person-id=17 %}
    -
    {% include cards/user-card-big.html person-id=18 %}
    +
    {% include_cached cards/user-card-big.html person-id=15 %}
    +
    {% include_cached cards/user-card-big.html person-id=16 %}
    +
    {% include_cached cards/user-card-big.html person-id=17 %}
    +
    {% include_cached cards/user-card-big.html person-id=18 %}
    -
    {% include cards/user-card-bg.html person-id=25 %}
    -
    {% include cards/user-card-bg.html person-id=26 %}
    -
    {% include cards/user-card-bg.html person-id=27 blurred=true %}
    -
    {% include cards/user-card-bg.html person-id=28 blurred=true %}
    +
    {% include_cached cards/user-card-bg.html person-id=25 %}
    +
    {% include_cached cards/user-card-bg.html person-id=26 %}
    +
    {% include_cached cards/user-card-bg.html person-id=27 blurred=true %}
    +
    {% include_cached cards/user-card-bg.html person-id=28 blurred=true %}
    - {% include cards/subscribe.html person-id=0 %} + {% include_cached cards/subscribe.html person-id=0 %}
    - {% include cards/subscribe.html person-id=2 %} + {% include_cached cards/subscribe.html person-id=2 %}
    -
    {% include cards/small-stats.html icon="dollar-sign" color="blue" count=132 +
    {% include_cached cards/small-stats.html icon="dollar-sign" color="blue" count=132 subtitle="Sales" description="12 waiting payments" %}
    -
    {% include cards/small-stats.html icon="shopping-bag" color="green" count=78 +
    {% include_cached cards/small-stats.html icon="shopping-bag" color="green" count=78 subtitle="Orders" description="32 shipped" %}
    -
    {% include cards/small-stats.html icon="users" color="red" count=1352 +
    {% include_cached cards/small-stats.html icon="users" color="red" count=1352 subtitle="Members" description="163 registered today" %}
    -
    {% include cards/small-stats.html icon="message-square" color="yellow" count=132 +
    {% include_cached cards/small-stats.html icon="message-square" color="yellow" count=132 subtitle="Comments" description="16 waitings" %}
    -
    {% include cards/small-stats.html chart-position="left" chart-type="pie" +
    {% include_cached cards/small-stats.html chart-position="left" chart-type="pie" chart-data="56/100" color="blue" count=132 subtitle="Sales" description="12 waiting payments" %}
    -
    {% include cards/small-stats.html chart-position="left" chart-type="pie" +
    {% include_cached cards/small-stats.html chart-position="left" chart-type="pie" chart-data="56/100" color="green" count=78 subtitle="Orders" description="32 shipped" %}
    -
    {% include cards/small-stats.html chart-position="left" chart-type="pie" +
    {% include_cached cards/small-stats.html chart-position="left" chart-type="pie" chart-data="56/100" color="red" count=1352 subtitle="Members" description="163 registered today" %}
    -
    {% include cards/small-stats.html chart-position="left" chart-type="pie" +
    {% include_cached cards/small-stats.html chart-position="left" chart-type="pie" chart-data="56/100" color="yellow" count=132 subtitle="Comments" description="16 waitings" %}
    - {% include cards/small-stats.html chart-type="line" chart-data="20,0,40,30,40,30,80,60" %} - {% include cards/small-stats.html chart-type="bar" chart-data="20,40,30,10,40,60,80,70" color="red" icon="heart" %} - {% include cards/small-stats.html chart-type="bar" chart-data="20,40,20,-10,-30,10,40,60,80,70" color="green" + {% include_cached cards/small-stats.html chart-type="line" chart-data="20,0,40,30,40,30,80,60" %} + {% include_cached cards/small-stats.html chart-type="bar" chart-data="20,40,30,10,40,60,80,70" color="red" icon="heart" %} + {% include_cached cards/small-stats.html chart-type="bar" chart-data="20,40,20,-10,-30,10,40,60,80,70" color="green" icon="github" %} - {% include cards/small-stats.html chart-type="pie" chart-data="12/100" person-id=10 %} - {% include cards/small-stats.html chart-type="pie" chart-data="12/100" person-id=11 %} - {% include cards/small-stats.html chart-type="pie" chart-data="56/100" person-id=1 %} - {% include cards/small-stats.html color="green" person-id=4 %} - {% include cards/small-stats.html small-icon="trending-down" color="red" person-id=3 %} - {% include cards/code.html %} + {% include_cached cards/small-stats.html chart-type="pie" chart-data="12/100" person-id=10 %} + {% include_cached cards/small-stats.html chart-type="pie" chart-data="12/100" person-id=11 %} + {% include_cached cards/small-stats.html chart-type="pie" chart-data="56/100" person-id=1 %} + {% include_cached cards/small-stats.html color="green" person-id=4 %} + {% include_cached cards/small-stats.html small-icon="trending-down" color="red" person-id=3 %} + {% include_cached cards/code.html %}
    - {% include cards/small-stats-2.html title="Customers" count="1,950" growth=5.2 color="yellow" %} - {% include cards/small-stats-2.html title="Orders" count="8256" growth=0 color="green" %} - {% include cards/small-stats-2.html title="Revenue" count="$58,924" growth=-3.1 color="red" light=true %} + {% include_cached cards/small-stats-2.html title="Customers" count="1,950" growth=5.2 color="yellow" %} + {% include_cached cards/small-stats-2.html title="Orders" count="8256" growth=0 color="green" %} + {% include_cached cards/small-stats-2.html title="Revenue" count="$58,924" growth=-3.1 color="red" light=true %}
    - {% include cards/project-kanban.html title="Tabler UI" badge="v1.0" value=30 percentage-color="red" limit=4 offset=0 + {% include_cached cards/project-kanban.html title="Tabler UI" badge="v1.0" value=30 percentage-color="red" limit=4 offset=0 due="72 days" %} - {% include cards/project-kanban.html title="Tabler React" value=80 offset=20 %} - {% include cards/user-info.html %} + {% include_cached cards/project-kanban.html title="Tabler React" value=80 offset=20 %} + {% include_cached cards/user-info.html %}
    diff --git a/pages/social.html b/pages/social.html index e04c4ea9..a608318a 100644 --- a/pages/social.html +++ b/pages/social.html @@ -6,14 +6,14 @@ done: true
    - {% include cards/feed-card.html feed=1 text="Suscipit integer egestas porta massa id sem fermentum vel et enim pulvinar ullamcorper dignissim at" %} - {% include cards/feed-card.html feed=3 %} - {% include cards/feed-card.html feed=5 %} - {% include cards/feed-card.html feed=7 %} + {% include_cached cards/feed-card.html feed=1 text="Suscipit integer egestas porta massa id sem fermentum vel et enim pulvinar ullamcorper dignissim at" %} + {% include_cached cards/feed-card.html feed=3 %} + {% include_cached cards/feed-card.html feed=5 %} + {% include_cached cards/feed-card.html feed=7 %}
    - {% include cards/feed-card.html feed=2 text="Lorem ipsum dolor sit amet, consectetur adipisicing elit. Culpa cupiditate dolorem doloremque labore quisquam? Animi, blanditiis cupiditate dignissimos est ipsam maiores molestias nemo perferendis perspiciatis praesentium." %} - {% include cards/feed-card.html feed=4 %} - {% include cards/feed-card.html feed=6 %} + {% include_cached cards/feed-card.html feed=2 text="Lorem ipsum dolor sit amet, consectetur adipisicing elit. Culpa cupiditate dolorem doloremque labore quisquam? Animi, blanditiis cupiditate dignissimos est ipsam maiores molestias nemo perferendis perspiciatis praesentium." %} + {% include_cached cards/feed-card.html feed=4 %} + {% include_cached cards/feed-card.html feed=6 %}
    diff --git a/pages/store.html b/pages/store.html index 234c3920..93990ef3 100644 --- a/pages/store.html +++ b/pages/store.html @@ -8,14 +8,14 @@ page-title: Store
    - {% include cards/store-product.html product=0 %} + {% include_cached cards/store-product.html product=0 %}
    - {% include cards/store-product.html product=3 %} + {% include_cached cards/store-product.html product=3 %}
    - {% include cards/store-list.html %} + {% include_cached cards/store-list.html %}
    diff --git a/pages/tabs.html b/pages/tabs.html index 43c92939..49b79cdb 100644 --- a/pages/tabs.html +++ b/pages/tabs.html @@ -5,15 +5,15 @@ done: true ---
    -
    {% include cards/tabs.html settings=true %}
    -
    {% include cards/tabs.html reverse=true settings=true %}
    -
    {% include cards/tabs.html icons=true %}
    -
    {% include cards/tabs.html alternative=true settings=true %}
    -
    {% include cards/tabs.html alternative=true reverse=true settings=true %}
    -
    {% include cards/tabs.html alternative=true icons=true %}
    -
    {% include cards/tabs.html dropdown=true %}
    -
    {% include cards/tabs.html justified=true activity=true %}
    -
    {% include cards/tabs.html justified=true disabled=true %}
    -
    {% include cards/tabs.html justified=true icons=true activity=true %}
    -
    {% include cards/tabs.html animation=true activity=true %}
    +
    {% include_cached cards/tabs.html settings=true %}
    +
    {% include_cached cards/tabs.html reverse=true settings=true %}
    +
    {% include_cached cards/tabs.html icons=true %}
    +
    {% include_cached cards/tabs.html alternative=true settings=true %}
    +
    {% include_cached cards/tabs.html alternative=true reverse=true settings=true %}
    +
    {% include_cached cards/tabs.html alternative=true icons=true %}
    +
    {% include_cached cards/tabs.html dropdown=true %}
    +
    {% include_cached cards/tabs.html justified=true activity=true %}
    +
    {% include_cached cards/tabs.html justified=true disabled=true %}
    +
    {% include_cached cards/tabs.html justified=true icons=true activity=true %}
    +
    {% include_cached cards/tabs.html animation=true activity=true %}
    diff --git a/pages/tmp.html b/pages/tmp.html index cbbf89d3..bf128381 100644 --- a/pages/tmp.html +++ b/pages/tmp.html @@ -5,10 +5,10 @@ menu: a.b.c
    - {% include cards/small-stats.html chart-type="bar" chart-data="20,40,30,40,60,80,70" color="red" icon="heart" %} + {% include_cached cards/small-stats.html chart-type="bar" chart-data="20,40,30,40,60,80,70" color="red" icon="heart" %}
    - {% include cards/small-stats.html chart-type="bar" chart-data="5,8,2,5,-1,3,5,3" color="blue" icon="heart" %} + {% include_cached cards/small-stats.html chart-type="bar" chart-data="5,8,2,5,-1,3,5,3" color="blue" icon="heart" %}
    {% for chart in site.data.charts %} @@ -34,14 +34,14 @@ menu: a.b.c
    - {% include cards/charts/total-sales.html %} + {% include_cached cards/charts/total-sales.html %}
    - {% include cards/user-info.html %} - {% include cards/users-list-2.html %} + {% include_cached cards/user-info.html %} + {% include_cached cards/users-list-2.html %}
    @@ -55,8 +55,8 @@ menu: a.b.c
    - {% include cards/users-list.html hoverable=true checked-ids="2,5,8" %} - {% include cards/users-list.html offset=8 checkbox=true title="Contacts" %} + {% include_cached cards/users-list.html hoverable=true checked-ids="2,5,8" %} + {% include_cached cards/users-list.html offset=8 checkbox=true title="Contacts" %}
    diff --git a/pages/users.html b/pages/users.html index 324b886b..1120e459 100644 --- a/pages/users.html +++ b/pages/users.html @@ -17,7 +17,7 @@ menu: base.users
    - {% include ui/avatar.html person=person size="md" %} + {% include_cached ui/avatar.html person=person size="md" %}