diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-01-10 10:19:22 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-01-10 10:19:22 +0100 |
commit | 38dd1c342a5d86989a2773f6499c7fbd005e241d (patch) | |
tree | 7d6b416da6031c5c7f0c83cb47e7b43a3069e31f /library/font_awesome/src/test/all.html | |
parent | 0f89db3b46be20a80c29ae894e83853831c7394e (diff) | |
download | volse-hubzilla-38dd1c342a5d86989a2773f6499c7fbd005e241d.tar.gz volse-hubzilla-38dd1c342a5d86989a2773f6499c7fbd005e241d.tar.bz2 volse-hubzilla-38dd1c342a5d86989a2773f6499c7fbd005e241d.zip |
font awesome 4.7.0
Diffstat (limited to 'library/font_awesome/src/test/all.html')
-rw-r--r-- | library/font_awesome/src/test/all.html | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/library/font_awesome/src/test/all.html b/library/font_awesome/src/test/all.html index bfb9f2870..076d19698 100644 --- a/library/font_awesome/src/test/all.html +++ b/library/font_awesome/src/test/all.html @@ -14,13 +14,22 @@ relative_path: ../../ <div class="container"> <div> <h1>All</h1> + <div> + {% for icon in icons %} + <i class="fa fa-{{ icon.id }}"></i>{% endfor %} + </div> + </div> + + + <div> + <h1>All (Unicode)</h1> {% for icon in icons %} <i class="fa">&#x{{ icon.unicode }}</i> {% endfor %} </div> <div> - <h1>Non-Brand</h1> + <h1>Non-Brand (Unicode)</h1> {% for icon in icons %} {% unless icon.categories contains "Brand Icons" %} @@ -30,7 +39,7 @@ relative_path: ../../ </div> <div> - <h1>Brand</h1> + <h1>Brand (Unicode)</h1> {% for icon in icons %} {% if icon.categories contains "Brand Icons" %} |