From e397b5ec08a68a0b4f48b06af80a0691d516e621 Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 9 Oct 2020 00:52:59 +0200 Subject: 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` --- src/editor.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/editor.html') 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 %} + {% assign new-icons = icons | where: "version", null %} + + {% if new-icons %} +

New icons ({{ new-icons | size }})

+ +
+
+ + {% for icon in new-icons %} + {% assign name = icon.slug %} + + {% include icon.html name=name %} + + {% endfor %} +
+
+ {% endif %} +

{{ site.icons.size }} icons

{% assign icons = icons | group_by: "category" %} -- cgit v1.2.1