diff options
author | codecalm <codecalm@gmail.com> | 2020-03-10 22:12:47 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-03-10 22:12:47 +0100 |
commit | fe151338aeedcf04cc2078653193903519f7b4ad (patch) | |
tree | 051e557be0474af0192e1990b3f352885545509b /src/_includes/icon.html | |
parent | icons sprite (diff) | |
download | tabler-icons-fe151338aeedcf04cc2078653193903519f7b4ad.tar.xz |
icons directory structure
Diffstat (limited to 'src/_includes/icon.html')
-rw-r--r-- | src/_includes/icon.html | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/_includes/icon.html b/src/_includes/icon.html deleted file mode 100644 index ff567c71..00000000 --- a/src/_includes/icon.html +++ /dev/null @@ -1 +0,0 @@ -{% assign stroke = include.stroke | default: 2 %}{% assign width = 24 %}{% assign name = include.name %}{% assign icon = site.icons | where: "slug", name | first %}{% capture replace-to %}<svg xmlns="http://www.w3.org/2000/svg" class="icon tabler-icon tabler-icon-{{ name }}" width="{{ width }}" height="{{ width }}" viewBox="0 0 24 24" stroke-width="{{ stroke }}" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">{% endcapture %}{% assign content = icon.content | replace: '<svg>', replace-to %}{{ content }} |