From 2101bc7e7423d6605841adf9ea559c6f5d2674d8 Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 14:46:47 +0200 Subject: `social-paypal` --- src/_icons/facebook.svg | 5 ----- src/_icons/github.svg | 5 ----- src/_icons/google.svg | 5 ----- src/_icons/social-facebook.svg | 5 +++++ src/_icons/social-github.svg | 5 +++++ src/_icons/social-google.svg | 5 +++++ src/_icons/social-paypal.svg | 5 +++++ src/editor.html | 10 ++++++++++ 8 files changed, 30 insertions(+), 15 deletions(-) delete mode 100644 src/_icons/facebook.svg delete mode 100644 src/_icons/github.svg delete mode 100644 src/_icons/google.svg create mode 100644 src/_icons/social-facebook.svg create mode 100644 src/_icons/social-github.svg create mode 100644 src/_icons/social-google.svg create mode 100644 src/_icons/social-paypal.svg diff --git a/src/_icons/facebook.svg b/src/_icons/facebook.svg deleted file mode 100644 index 579aeda..0000000 --- a/src/_icons/facebook.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/_icons/github.svg b/src/_icons/github.svg deleted file mode 100644 index 399b07c..0000000 --- a/src/_icons/github.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/_icons/google.svg b/src/_icons/google.svg deleted file mode 100644 index 9ce8aff..0000000 --- a/src/_icons/google.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/_icons/social-facebook.svg b/src/_icons/social-facebook.svg new file mode 100644 index 0000000..579aeda --- /dev/null +++ b/src/_icons/social-facebook.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/social-github.svg b/src/_icons/social-github.svg new file mode 100644 index 0000000..399b07c --- /dev/null +++ b/src/_icons/social-github.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/social-google.svg b/src/_icons/social-google.svg new file mode 100644 index 0000000..9ce8aff --- /dev/null +++ b/src/_icons/social-google.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/social-paypal.svg b/src/_icons/social-paypal.svg new file mode 100644 index 0000000..4731210 --- /dev/null +++ b/src/_icons/social-paypal.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/editor.html b/src/editor.html index 37423d7..3f07672 100644 --- a/src/editor.html +++ b/src/editor.html @@ -73,6 +73,16 @@ layout: default
{% include toolbar.html toolbar='arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough,emphasis|align-left,align-center,align-right,align-justified,line-height|list,list-check|link,photo,table|sort-ascending,sort-descending|indent-increase,indent-decrease|subscript,superscript|minus,omega,chart-area-line,pencil|eraser,settings,typography,letter-case,clear-formatting|parentheses,brackets,braces,terminal|github,facebook,twitter,dribbble,google' %} {% include toolbar.html toolbar='check,checks,x|currency-euro,currency-dollar,currency-bitcoin,currency-pound,currency-rupee,currency-yen|bike,car,bus,truck,forklift,tir,firetruck,ambulance,tractor' %} + + {% assign social-icons = '' %} + {% for icon in icons %} + {% if icon.slug contains 'social-' %} + {% assign social-icons = social-icons | append: icon.slug | append: ',' %} + {% endif %} + {% endfor %} + {% assign size = social-icons | size | minus: 1 %} + {% assign social-icons = social-icons | slice: 0, size %} + {% include toolbar.html toolbar=social-icons %}

{{ site.icons.size }} icons

-- cgit v1.2.1