diff --git a/Gemfile b/Gemfile
index ede8efea1..c6784b71a 100644
--- a/Gemfile
+++ b/Gemfile
@@ -7,7 +7,6 @@ group :jekyll_plugins do
gem "jekyll-tidy"
gem "jekyll-timeago"
gem 'jekyll-redirect-from'
- gem 'jekyll-include-cache'
end
gem 'wdm', '>= 0.1.1' if Gem.win_platform?
diff --git a/_config.yml b/_config.yml
index 679cc4bba..a591934ea 100644
--- a/_config.yml
+++ b/_config.yml
@@ -15,7 +15,6 @@ plugins:
- jekyll-tidy
- jekyll-timeago
- jekyll-redirect-from
-- jekyll-include-cache
exclude:
- .jekyll-cache
diff --git a/pages/_components/card-buttons.html b/pages/_components/card-buttons.html
index 595fb9a75..5692c01fe 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_cached cards/card.html title="Card with footer buttons" footer-buttons=true %}
+{% include 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 fcff290b4..251603e37 100644
--- a/pages/_components/card-comments.html
+++ b/pages/_components/card-comments.html
@@ -3,4 +3,4 @@ title: Comments card
columns: 2
---
-{% include_cached cards/comments.html %}
+{% include cards/comments.html %}
diff --git a/pages/_components/card-ribbon.html b/pages/_components/card-ribbon.html
index a504d74a0..e2db82af5 100644
--- a/pages/_components/card-ribbon.html
+++ b/pages/_components/card-ribbon.html
@@ -3,4 +3,4 @@ title: Card with ribbon
columns: 1
---
-{% include_cached cards/ribbon.html right=true text="-10%" lorem=true color="orange" bookmark=true %}
+{% include cards/ribbon.html right=true text="-10%" lorem=true color="orange" bookmark=true %}
diff --git a/pages/_components/card-tabs-bottom.html b/pages/_components/card-tabs-bottom.html
index 57857123e..7978cc07a 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_cached cards/card-tabs.html count=4 bottom=true id="bottom" %}
+{% include 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 bc392e708..cc56b8342 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_cached cards/card-image.html title="Card with side image" %}
+{% include cards/card-image.html title="Card with side image" %}
diff --git a/pages/_components/simple-avatar.html b/pages/_components/simple-avatar.html
index d9ea2db26..1ae634ddb 100644
--- a/pages/_components/simple-avatar.html
+++ b/pages/_components/simple-avatar.html
@@ -3,4 +3,4 @@ title: Simple avatar
markdown: false
---
-{% include_cached ui/avatar.html person-id=1 status="green" %}
+{% include ui/avatar.html person-id=1 status="green" %}
diff --git a/pages/_components/simple-card.html b/pages/_components/simple-card.html
index 768705928..1499d1bc8 100644
--- a/pages/_components/simple-card.html
+++ b/pages/_components/simple-card.html
@@ -3,4 +3,4 @@ title: Simple box
columns: 1
---
-{% include_cached cards/card.html %}
+{% include cards/card.html %}
diff --git a/pages/_components/widget-revenue.html b/pages/_components/widget-revenue.html
index 8d7798356..1aa376489 100644
--- a/pages/_components/widget-revenue.html
+++ b/pages/_components/widget-revenue.html
@@ -2,4 +2,4 @@
title: Revenue chart
---
-{% include_cached cards/charts/revenue.html %}
+{% include cards/charts/revenue.html %}
diff --git a/pages/_components/widget-sales.html b/pages/_components/widget-sales.html
index 5ba7b3324..6b76222be 100644
--- a/pages/_components/widget-sales.html
+++ b/pages/_components/widget-sales.html
@@ -3,4 +3,4 @@ title: Sales widget
columns: 1
---
-{% include_cached cards/charts/sales.html %}
+{% include cards/charts/sales.html %}
diff --git a/pages/_docs/avatars.md b/pages/_docs/avatars.md
index 8eeb6f80c..4bc0f64bb 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_cached ui/avatar.html person-id=1 %}
-{% include_cached ui/avatar.html person-id=2 %}
-{% include_cached ui/avatar.html person-id=3 %}
+{% include ui/avatar.html person-id=1 %}
+{% include ui/avatar.html person-id=2 %}
+{% include 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_cached ui/avatar.html person-id=1 %}
-{% include_cached ui/avatar.html person-id=3 %}
-{% include_cached ui/avatar.html person-id=4 %}
+{% include ui/avatar.html person-id=1 %}
+{% include ui/avatar.html person-id=3 %}
+{% include 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_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" %}
+{% 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" %}
{% 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_cached ui/avatar.html icon="user" %}
-{% include_cached ui/avatar.html icon="plus" %}
-{% include_cached ui/avatar.html icon="user-plus" %}
+{% include ui/avatar.html icon="user" %}
+{% include ui/avatar.html icon="plus" %}
+{% include 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_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" %}
+{% 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" %}
{% 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_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" %}
+{% 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" %}
{% 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_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" %}
+{% 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" %}
{% 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_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" %}
+{% 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" %}
{% endexample %}
### Avatars list
@@ -109,7 +109,7 @@ Make the list stack when it reaches a certain length.
{% example %}
{% for person in site.data.people limit: 5 offset: 30 %}
- {% include_cached ui/avatar.html person=person element="a" %}
+ {% include ui/avatar.html person=person element="a" %}
{% endfor %}
+8
diff --git a/pages/_docs/buttons.md b/pages/_docs/buttons.md
index 99a51bf66..06b6c272b 100644
--- a/pages/_docs/buttons.md
+++ b/pages/_docs/buttons.md
@@ -27,7 +27,7 @@ Use any of the available button classes to quickly create a styled button . We p
{% for button in site.button-variants %}
{% assign btn-color = button[1].class %}
{% assign btn-title = button[1].title %}
-{% include_cached ui/button.html color=btn-color text=btn-title %}
+{% include ui/button.html color=btn-color text=btn-title %}
{% endfor %}
{% endexample %}
@@ -39,7 +39,7 @@ Make buttons look inactive by adding the disabled boolean attribute to any `.btn
{% for button in site.button-variants %}
{% assign btn-color = button[1].class %}
{% assign btn-title = button[1].title %}
-{% include_cached ui/button.html color=btn-color text=btn-title disabled=true %}
+{% include ui/button.html color=btn-color text=btn-title disabled=true %}
{% endfor %}
{% endexample %}
@@ -62,7 +62,7 @@ Add `.btn-square` to button to remove border-radius.
{% for button in site.button-variants %}
{% assign btn-color = button[1].class %}
{% assign btn-title = button[1].title %}
-{% include_cached ui/button.html color=btn-color text=btn-title square=true %}
+{% include ui/button.html color=btn-color text=btn-title square=true %}
{% endfor %}
{% endexample %}
@@ -74,7 +74,7 @@ Add `.btn-pill` class to any button to make them more rounded.
{% for button in site.button-variants %}
{% assign btn-color = button[1].class %}
{% assign btn-title = button[1].title %}
-{% include_cached ui/button.html color=btn-color text=btn-title pill=true %}
+{% include ui/button.html color=btn-color text=btn-title pill=true %}
{% endfor %}
{% endexample %}
@@ -86,7 +86,7 @@ In need of a button, but not the hefty background colors they bring? Replace the
{% for button in site.button-variants %}
{% assign btn-color = button[1].class %}
{% assign btn-title = button[1].title %}
-{% include_cached ui/button.html text=btn-title color=btn-color outline=true %}
+{% include ui/button.html text=btn-title color=btn-color outline=true %}
{% endfor %}
{% endexample %}
@@ -119,27 +119,27 @@ Icons can be found [**here**](/docs/icons.html#icons)
{% example html wrapper=btn-list %}
{% endexample %}
@@ -153,7 +153,7 @@ A button can be formatted to link to a social website
{% assign btn-icon = button[1].icon %}
{% assign btn-title = button[1].title %}
{% assign btn-color = button[0] %}
-{% include_cached ui/button.html color=btn-color icon=btn-icon text=btn-title %}
+{% include ui/button.html color=btn-color icon=btn-icon text=btn-title %}
{% endfor %}
{% endexample %}
@@ -163,7 +163,7 @@ You can use only icons.
{% for button in site.socials %}
{% assign btn-icon = button[1].icon %}
{% assign btn-color = button[0] %}
-{% include_cached ui/button.html color=btn-color icon=btn-icon icon-only=true %}
+{% include ui/button.html color=btn-color icon=btn-icon icon-only=true %}
{% endfor %}
{% endexample %}
@@ -173,25 +173,25 @@ Icon only button. Add `.btn-icon` class to remove unnecessary padding from butto
{% example html wrapper=btn-list %}
{% endexample %}
@@ -202,23 +202,23 @@ Wrap the dropdown’s toggle (your button or link) and the dropdown menu within
{% example html wrapper=btn-list %}
- {% include_cached ui/dropdown-menu.html %}
+ {% include ui/dropdown-menu.html %}
- {% include_cached ui/dropdown-menu.html %}
+ {% include ui/dropdown-menu.html %}
- {% include_cached ui/dropdown-menu.html %}
+ {% include ui/dropdown-menu.html %}
{% endexample %}
@@ -229,7 +229,7 @@ Add `.btn-loading` to use a loading state on a button. The width of the button d
Since the loading spinner is implemented using the `:after` pseudo-element, it is not supported by the `` element.
{% example html wrapper=btn-list %}
-{% include_cached ui/button.html color="primary" text="Button" spinner=true %}
+{% include ui/button.html color="primary" text="Button" spinner=true %}
{% endexample %}
### List of buttons
@@ -290,13 +290,13 @@ Use the `.text-center` or the `.text-right` modifiers to alter the alignment.
{% example html wrapper=btn-list %}
- {% include_cached ui/avatar.html person-id="4" %} Avatar
+ {% include ui/avatar.html person-id="4" %} Avatar
- {% include_cached ui/avatar.html person-id="5" %} Avatar
+ {% include ui/avatar.html person-id="5" %} Avatar
- {% include_cached ui/avatar.html person-id="6" %} Avatar
+ {% include ui/avatar.html person-id="6" %} Avatar
{% endexample %}
diff --git a/pages/_docs/cards.md b/pages/_docs/cards.md
index 186e5ed26..0e2810d7c 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_cached cards/card.html body="This is some text within a card body." %}
+{% include cards/card.html body="This is some text within a card body." %}
{% endexample %}
### Card with title and image
{% example html columns=1 %}
-{% include_cached cards/card.html img-top=true title="Card with title and image" %}
+{% include 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_cached cards/blog-single.html type="image" %}
+{% include 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_cached cards/blog-single.html type="aside" liked=1 article-id=3 %}
+{% include 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_cached cards/card.html status-top="danger" title="Card with top status" %}
+ {% include cards/card.html status-top="danger" title="Card with top status" %}
- {% include_cached cards/card.html status-left="green" title="Card with side status" %}
+ {% include 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_cached cards/card.html class="card-stacked" title="Stacked card" %}
+{% include cards/card.html class="card-stacked" title="Stacked card" %}
{% endexample %}
## Tabbed card
{% example html columns=2 %}
-{% include_cached cards/card-tabs.html count=4 %}
+{% include cards/card-tabs.html count=4 %}
{% endexample %}
diff --git a/pages/_docs/ribbons.md b/pages/_docs/ribbons.md
index 502050e37..ab1b4e68e 100644
--- a/pages/_docs/ribbons.md
+++ b/pages/_docs/ribbons.md
@@ -7,7 +7,7 @@ done: true
### Default markup
{% example html columns=1 %}
-{% include_cached cards/ribbon.html %}
+{% include cards/ribbon.html %}
{% endexample %}
### Ribbon position
@@ -22,7 +22,7 @@ You can easily change the position of a ribbon by adding a class to the element.
You can also use multiple classes at once for example: `.ribbon.ribbon-top.ribbon-left` moves the ribbon to the top left corner.
{% example html columns=1 %}
-{% include_cached cards/ribbon.html top=true left=true %}
+{% include cards/ribbon.html top=true left=true %}
{% endexample %}
### Ribbon color
@@ -30,7 +30,7 @@ You can also use multiple classes at once for example: `.ribbon.ribbon-top.ribbo
Customize the ribbon's background color. You can click [here]({% docs_url colors %}) to see the list of available colors.
{% example html columns=1 %}
-{% include_cached cards/ribbon.html color="red" %}
+{% include cards/ribbon.html color="red" %}
{% endexample %}
### Ribbon text
@@ -38,7 +38,7 @@ Customize the ribbon's background color. You can click [here]({% docs_url colors
Set your own text in a ribbon.
{% example html columns=1 %}
-{% include_cached cards/ribbon.html color="green" text="-50%" %}
+{% include cards/ribbon.html color="green" text="-50%" %}
{% endexample %}
### Ribbon style
@@ -46,5 +46,5 @@ Set your own text in a ribbon.
Change the style of a ribbon.
{% example html columns=1 %}
-{% include_cached cards/ribbon.html bookmark=true color="orange" text="-50%" %}
+{% include cards/ribbon.html bookmark=true color="orange" text="-50%" %}
{% endexample %}
diff --git a/pages/_docs/spinners.md b/pages/_docs/spinners.md
index 4f216ba7b..029c50231 100644
--- a/pages/_docs/spinners.md
+++ b/pages/_docs/spinners.md
@@ -44,9 +44,9 @@ done: true
### Buttons
{% example html wrapper=btn-list %}
-{% include_cached ui/button.html spinner=true text="Button" color="primary" %}
-{% include_cached ui/button.html spinner=true text="Button" color="danger" %}
-{% include_cached ui/button.html spinner=true text="Button" color="warning" %}
-{% include_cached ui/button.html spinner=true color="success" %}
-{% include_cached ui/button.html spinner=true color="secondary" %}
+{% include ui/button.html spinner=true text="Button" color="primary" %}
+{% include ui/button.html spinner=true text="Button" color="danger" %}
+{% include ui/button.html spinner=true text="Button" color="warning" %}
+{% include ui/button.html spinner=true color="success" %}
+{% include ui/button.html spinner=true color="secondary" %}
{% endexample %}
diff --git a/pages/_docs/tabs.md b/pages/_docs/tabs.md
index f534bdf43..fe5a82de2 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_cached cards/tabs.html id="ex1" %}
+{% include cards/tabs.html id="ex1" %}
{% endexample %}
### Tabs with icons
{% example html columns=1 %}
-{% include_cached cards/tabs.html icons=true settings=true id="ex2" %}
+{% include cards/tabs.html icons=true settings=true id="ex2" %}
{% endexample %}
### Tabs only with icons
{% example html columns=1 %}
-{% include_cached cards/tabs.html icons=true settings=true hide-text=true id="ex3" %}
+{% include cards/tabs.html icons=true settings=true hide-text=true id="ex3" %}
{% endexample %}
### Tabs with dropdown
{% example html columns=1 %}
-{% include_cached cards/tabs.html dropdown=true id="ex4" %}
+{% include cards/tabs.html dropdown=true id="ex4" %}
{% endexample %}
### Full-width tabs
{% example html columns=1 %}
-{% include_cached cards/tabs.html justified=true icons=true hide-text=true activity=true id="ex5" %}
+{% include cards/tabs.html justified=true icons=true hide-text=true activity=true id="ex5" %}
{% endexample %}
### Alternate style
{% example html columns=1 %}
-{% include_cached cards/tabs.html icons=true alternative=true settings=true id="ex6" %}
+{% include 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 01dd7ec5b..131d45203 100644
--- a/pages/_docs/timelines.md
+++ b/pages/_docs/timelines.md
@@ -5,10 +5,10 @@ menu: docs.timelines
### Timeline
{% example html columns=3 %}
- {% include_cached cards/timeline.html %}
+ {% include cards/timeline.html %}
{% endexample %}
### Simple Timeline
{% example html columns=1 %}
- {% include_cached cards/timeline.html simple=true %}
+ {% include cards/timeline.html simple=true %}
{% endexample %}
diff --git a/pages/_includes/cards/blog-single.html b/pages/_includes/cards/blog-single.html
index 78300b9b9..398c5f121 100644
--- a/pages/_includes/cards/blog-single.html
+++ b/pages/_includes/cards/blog-single.html
@@ -12,14 +12,14 @@
- {% 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" %}
+ {% 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" %}
diff --git a/pages/_includes/cards/comments.html b/pages/_includes/cards/comments.html
index e57da1639..9cc58e79c 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 %}