-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfont-awesome-cheatsheet-4x.html
57 lines (55 loc) · 2.01 KB
/
font-awesome-cheatsheet-4x.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
layout: base_search
permalink: /font-awesome-cheatsheet-4x/
title: Font Awesome Cheatsheet v4.7
description: This is a simple cheatsheet for Font Awesome v4.7. You can copy code and unicode by one click
keywords: Fontawesome, font awesome, cheatsheet, v4.7
---
<link rel="stylesheet" href="{{ page.relative_path }}/assets/font-awesome/css/font-awesome.min.css" />
<table id="icons" class="table table-striped table-bordered">
<thead>
<tr>
<th>Icon</th>
<th>Name</th>
<th>Class</th>
<th>Code</th>
<th>Unicode</th>
<th>Categories</th>
<th>Aliases</th>
<th>Created in version</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Icon</th>
<th>Name</th>
<th>Class</th>
<th>Code</th>
<th>Unicode</th>
<th>Categories</th>
<th>Aliases</th>
<th>Created in version</th>
</tr>
</tfoot>
<tbody>
{% for icon in site.data.icons %}
<tr>
<td><i class="fa fa-{{ icon.id }}"></i></td>
<td>{{ icon.name }}</td>
<td>{{ icon.id }}</td>
<td>
<pre><code class="highlight" data-lang="html" data-to-copy-html='<i class="fa fa-{{ icon.id }}"></i>' ><span class="nt"><i </span><span class="na">class=</span><span class="s">"fa fa-{{ icon.id }}"</span><span class="nt">></span><span class="nt"></i</span><span class="nt">></span></code></pre>
</td>
<td class="copy-unicode" data-to-copy-html="{{ icon.unicode }}">{{ icon.unicode }}</td>
<td>{{ icon.categories }}</td>
<td>
{% assign my_array = icon.filter %}
{% for tag in my_array %}
{{ tag }}
{% endfor %}
</td>
<td>{{ icon.created }}</td>
</tr>
{% endfor %}
</tbody>
</table>