mirror of
https://github.com/tabler/tabler-icons.git
synced 2025-08-31 01:30:04 +02:00
tags
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
source: src
|
||||
|
||||
host: 0.0.0.0
|
||||
port: 4001
|
||||
|
||||
exclude:
|
||||
- .idea
|
||||
@@ -11,6 +13,7 @@ defaults:
|
||||
values:
|
||||
layout: icon
|
||||
in-bg: true
|
||||
tags: []
|
||||
permalink: 'icons/:slug'
|
||||
|
||||
collections:
|
||||
|
@@ -1,4 +1,5 @@
|
||||
---
|
||||
tags: [cancel, remove, delete, empty]
|
||||
---
|
||||
<svg>
|
||||
<line x1="18" y1="6" x2="6" y2="18" />
|
||||
|
@@ -350,8 +350,28 @@ Components
|
||||
}
|
||||
}
|
||||
|
||||
.icon-size-16 { width: 16px; }
|
||||
.icon-size-24 { width: 24px; }
|
||||
.icon-size-32 { width: 32px; }
|
||||
.icon-size-48 { width: 48px; }
|
||||
.icon-size-64 { width: 64px; }
|
||||
.icon-size-16 { width: 16px; height: 16px }
|
||||
.icon-size-24 { width: 24px; height: 24px }
|
||||
.icon-size-32 { width: 32px; height: 32px }
|
||||
.icon-size-48 { width: 48px; height: 48px }
|
||||
.icon-size-64 { width: 64px; height: 64px }
|
||||
|
||||
.table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
|
||||
td, th {
|
||||
padding: .5rem;
|
||||
text-align: left;
|
||||
border: 1px solid #eee;
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.td-1 {
|
||||
width: 1%;
|
||||
}
|
||||
|
17
src/tags.html
Normal file
17
src/tags.html
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<div class="container">
|
||||
<div class="box">
|
||||
<table class="table">
|
||||
{% for icon in site.icons %}
|
||||
<tr>
|
||||
<td class="td-1">{% include icon.html name=icon.slug %}</td>
|
||||
<th>{{ icon.slug }}</th>
|
||||
<td>{{ icon.tags | join: ', ' }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user