2013-05-10 03:02:02 +08:00
|
|
|
---
|
|
|
|
layout: base
|
|
|
|
title: Font Awesome Cheatsheet
|
|
|
|
relative_path: ../
|
|
|
|
---
|
2016-04-01 21:45:15 +08:00
|
|
|
{% capture jumbotron_h1 %}<i class="fa fa-list-ul" aria-hidden="true"></i> Cheatsheet{% endcapture %}
|
2013-05-24 04:22:45 +08:00
|
|
|
{% capture jumbotron_p %}The complete Font Awesome {{ site.fontawesome.version }} icon reference{% endcapture %}
|
2013-05-10 03:02:02 +08:00
|
|
|
|
|
|
|
{% include jumbotron.html %}
|
|
|
|
{% include stripe-social.html %}
|
|
|
|
|
|
|
|
<div class="container">
|
2013-10-20 03:20:03 +08:00
|
|
|
{% capture stripe_ad_content %}
|
|
|
|
<p class="lead">
|
2018-02-06 07:00:22 +08:00
|
|
|
Print this page to PDF for the complete set of vectors. Or to use on the
|
|
|
|
desktop, install FontAwesome.otf, set it as the font in your application,
|
|
|
|
and copy and paste the icons (not the unicode) directly from this page into
|
|
|
|
your designs.
|
2013-10-20 03:20:03 +08:00
|
|
|
</p>
|
|
|
|
{% endcapture %}
|
|
|
|
|
2018-02-06 07:00:22 +08:00
|
|
|
<h2 class="page-header">
|
|
|
|
Every {{ site.forkawesome.version }} {{ site.fontawesome.version }} Icon,
|
|
|
|
CSS Class, & Unicode
|
|
|
|
</h2>
|
2013-10-20 03:20:03 +08:00
|
|
|
|
|
|
|
<div class="row">
|
2014-05-14 23:49:26 +08:00
|
|
|
{% assign sorted_icons = icons | expand_aliases | sort_by:'class' %}
|
|
|
|
|
|
|
|
{% for icon in sorted_icons %}
|
2016-12-19 02:22:37 +08:00
|
|
|
<div class="col-md-4 col-sm-6 col-lg-3 col-print-4">
|
2014-08-27 20:58:25 +08:00
|
|
|
{% if icon.created >= site.fontawesome.major_version %}<small class="text-muted pull-right">{{ icon.created }}</small>{% endif %}
|
2016-12-19 02:29:47 +08:00
|
|
|
<i class="fa fa-fw" aria-hidden="true" title="Copy to use {{ icon.class }}">&#x{{ icon.unicode }};</i>
|
2014-05-14 23:49:26 +08:00
|
|
|
fa-{{ icon.class }}
|
|
|
|
{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}
|
2014-08-27 20:58:25 +08:00
|
|
|
<span class="text-muted">[&#x{{ icon.unicode }};]</span>
|
2013-10-20 03:20:03 +08:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2013-05-10 03:02:02 +08:00
|
|
|
</div>
|