diff options
| author | codecalm <codecalm@gmail.com> | 2020-10-09 00:52:59 +0200 | 
|---|---|---|
| committer | codecalm <codecalm@gmail.com> | 2020-10-09 00:52:59 +0200 | 
| commit | e397b5ec08a68a0b4f48b06af80a0691d516e621 (patch) | |
| tree | 45534f9655901a7616c06feec026c5906b3c1598 /src/editor.html | |
| parent | Merge pull request #82 from tabler/dev-icons-react-bundling (diff) | |
| download | tabler-icons-e397b5ec08a68a0b4f48b06af80a0691d516e621.tar.xz | |
18 new icons: `backhoe`, `building-carousel`, `building-castle`, `building-fortress`, `building-lighthouse`, `buldozer`, `golf`, `helicopter-landing`, `helicopter`, `jump-rope`, `mood-crazy-happy`, `pool`, `soccer-field`, `speedboat`, `submarine`, `tank`, `train`, `wrecking-ball`
Fixed icons: `drone`, `gps`, `pill`, `sthetoscope`
Diffstat (limited to 'src/editor.html')
| -rw-r--r-- | src/editor.html | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/src/editor.html b/src/editor.html index 4cec1b20..103a9bd4 100644 --- a/src/editor.html +++ b/src/editor.html @@ -80,6 +80,24 @@ layout: default  			%}  		</div> +		{% assign new-icons = icons | where: "version", null %} + +		{% if new-icons %} +		<h2 class="icon-subtitle">New icons ({{ new-icons | size }})</h2> + +		<div class="mb"> +			<div class="icons-list"> + +				{% for icon in new-icons %} +				{% assign name = icon.slug %} +				<a href="#" class="icons-list-icon js-icon" title="{{ icon.slug }}" data-icon="{{ name }}"{% unless icon.category %} style="color: #999" {% endunless %}> +					{% include icon.html name=name %} +				</a> +				{% endfor %} +			</div> +		</div> +		{% endif %} +  		<h2 class="icon-subtitle">{{ site.icons.size }} icons</h2>  		{% assign icons = icons | group_by: "category" %} | 
