diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2022-12-16 17:45:03 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2022-12-16 17:45:03 -0600 |
commit | 7e49db5ddefe8c515b5f3931a5c701efaac33d91 (patch) | |
tree | d7d1efda44837a466fe079266efda90021812399 /static/fork-awesome/src/doc/test/cdn.html | |
parent | 3112a76dac594fe715b59e53c399b0dec5b53193 (diff) |
change structure for new pyssg version
Diffstat (limited to 'static/fork-awesome/src/doc/test/cdn.html')
-rw-r--r-- | static/fork-awesome/src/doc/test/cdn.html | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/static/fork-awesome/src/doc/test/cdn.html b/static/fork-awesome/src/doc/test/cdn.html deleted file mode 100644 index 8bfadf6..0000000 --- a/static/fork-awesome/src/doc/test/cdn.html +++ /dev/null @@ -1,53 +0,0 @@ ---- -relative_path: ../../ ---- - -<!DOCTYPE html> -<html> - <head> - <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@{{ site.forkawesome.version }}/css/fork-awesome.min.css"> - </head> - - <body> - <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 (Unicode)</h1> - - {% for icon in icons %} - {% unless icon.categories contains "Brand Icons" %} - <i class="fa">&#x{{ icon.unicode }}</i> - {% endunless %} - {% endfor %} - </div> - - <div> - <h1>Brand (Unicode)</h1> - - {% for icon in icons %} - {% if icon.categories contains "Brand Icons" %} - <i class="fa">&#x{{ icon.unicode }}</i> - {% endif %} - {% endfor %} - </div> - - - </div> - </body> - -</html> |