diff options
author | redmatrix <git@macgirvin.com> | 2016-05-01 08:02:03 +1000 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-01 08:02:03 +1000 |
commit | 9446d0cbb463af6a256efebf97e10618469f1193 (patch) | |
tree | 3704de63c7188086ea6a5399094dfde170afaa69 /library/font_awesome/src/test/all.html | |
parent | 8a41e2a011bd1c69c138fb75d138ed2bb4bf779f (diff) | |
parent | 3fe8fc0aa80a03fc63905e1e80999e6ccb8672e8 (diff) | |
download | volse-hubzilla-9446d0cbb463af6a256efebf97e10618469f1193.tar.gz volse-hubzilla-9446d0cbb463af6a256efebf97e10618469f1193.tar.bz2 volse-hubzilla-9446d0cbb463af6a256efebf97e10618469f1193.zip |
Merge pull request #362 from Treer/fontawesome
Update Font-Awesome to 4.6.1
Diffstat (limited to 'library/font_awesome/src/test/all.html')
-rw-r--r-- | library/font_awesome/src/test/all.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/library/font_awesome/src/test/all.html b/library/font_awesome/src/test/all.html new file mode 100644 index 000000000..bfb9f2870 --- /dev/null +++ b/library/font_awesome/src/test/all.html @@ -0,0 +1,46 @@ +--- +relative_path: ../../ +--- + +<!DOCTYPE html> +<html> + <head> + <link rel="stylesheet" href="{{ page.relative_path }}assets/css/site.css"> + <link rel="stylesheet" href="{{ page.relative_path }}assets/font-awesome/css/font-awesome.css"> + <script src="https://use.fonticons.com/ffe176a3.js"></script> + </head> + + <body> + <div class="container"> + <div> + <h1>All</h1> + {% for icon in icons %} + <i class="fa">&#x{{ icon.unicode }}</i> + {% endfor %} + </div> + + <div> + <h1>Non-Brand</h1> + + {% for icon in icons %} + {% unless icon.categories contains "Brand Icons" %} + <i class="fa">&#x{{ icon.unicode }}</i> + {% endunless %} + {% endfor %} + </div> + + <div> + <h1>Brand</h1> + + {% for icon in icons %} + {% if icon.categories contains "Brand Icons" %} + <i class="fa">&#x{{ icon.unicode }}</i> + {% endif %} + {% endfor %} + </div> + + + </div> + </body> + +</html> |