Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'build/_layouts/icon.html')
-rwxr-xr-xbuild/_layouts/icon.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/build/_layouts/icon.html b/build/_layouts/icon.html
new file mode 100755
index 000000000..9955f202f
--- /dev/null
+++ b/build/_layouts/icon.html
@@ -0,0 +1,39 @@
+---
+layout: base
+title_prefix: Font Awesome Icons
+---
+<div class="container">
+ <section>
+ <dl class="dl-horizontal">
+ <dt>Icon</dt>
+ <dd><i class="icon-{{ page.icon['id'] }}"></i></dd>
+
+ <dt>Icon Class</dt>
+ <dd>icon-{{ page.icon['id'] }}</dd>
+
+ <dt>Unicode</dt>
+ <dd>{{ page.icon['unicode'] }}</dd>
+
+ <dt>Created</dt>
+ <dd>v{{ page.icon['created'] }}</dd>
+
+ {% if page.icon['categories'] %}
+ <dt>Categories</dt>
+ <dd>
+ {% for category in page.icon['categories'] %}
+ {{ category }}<br>
+ {% endfor %}
+ </dd>
+ {% endif %}
+
+ {% if page.icon['aliases'] %}
+ <dt>Aliases</dt>
+ <dd>
+ {% for alias in page.icon['aliases'] %}
+ {{ alias }}<br>
+ {% endfor %}
+ </dd>
+ {% endif %}
+ </dl>
+ </section>
+</div>