mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-11-20 11:14:28 +00:00
adding currency icon secion, replacing with automatic icon counts
This commit is contained in:
parent
fcdf2c0a20
commit
17c88cb80b
@ -28,8 +28,6 @@ font_awesome:
|
||||
url: https://github.com/FortAwesome/Font-Awesome
|
||||
project: Font-Awesome
|
||||
org: FortAwesome
|
||||
icon_count: 302
|
||||
new_icon_count: 54
|
||||
|
||||
bootstrap:
|
||||
version: 2.3.1
|
||||
|
@ -1,6 +1,6 @@
|
||||
{% capture stripe_ad_content %}
|
||||
<p class="lead">
|
||||
You asked, Font Awesome delivers with {{ site.font_awesome.new_icon_count }} shiny new icons in version {{ site.font_awesome.version }}.
|
||||
You asked, Font Awesome delivers with {{ icons | version:site.font_awesome.version | size }} shiny new icons in version {{ site.font_awesome.version }}.
|
||||
Want to request new icons? <a href="{{ page.relative_path }}community/#requesting-new-icons">Here's how</a>.
|
||||
<!--The ever-expanding list of Font Awesome {{ site.font_awesome.version }} icons.-->
|
||||
Need vectors or want to use on the desktop? Check the <a href="{{ page.relative_path }}cheatsheet/">cheatsheet</a>.
|
||||
@ -10,6 +10,7 @@
|
||||
|
||||
{% include icons/new.html %}
|
||||
{% include icons/web-application.html %}
|
||||
{% include icons/currency.html %}
|
||||
{% include icons/text-editor.html %}
|
||||
{% include icons/directional.html %}
|
||||
{% include icons/video-player.html %}
|
||||
|
15
build/_includes/icons/currency.html
Normal file
15
build/_includes/icons/currency.html
Normal file
@ -0,0 +1,15 @@
|
||||
<section id="currency">
|
||||
<h2 class="page-header">Currency Icons</h2>
|
||||
|
||||
<div class="row the-icons">
|
||||
{% for icon in icons %}
|
||||
{% if icon.categories contains "Currency Icons" %}
|
||||
<div class="span3"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="icon-{{ icon.id }}"></i> icon-{{ icon.id }}</a></div>
|
||||
{% for alias in icon.aliases %}
|
||||
<div class="span3"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="icon-{{ alias }}"></i> icon-{{ alias }} <span class="muted">(alias)</span></a></div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -2,7 +2,7 @@
|
||||
<h2 class="page-header">New Icons in {{ site.font_awesome.version }}</h2>
|
||||
{% if page.navbar_active != "icons" %}
|
||||
<div class="margin-botom-large">
|
||||
You asked, Font Awesome delivers with {{ site.font_awesome.new_icon_count }} shiny new icons in version {{ site.font_awesome.version }}.
|
||||
You asked, Font Awesome delivers with {{ icons | version:site.font_awesome.version | size }} shiny new icons in version {{ site.font_awesome.version }}.
|
||||
Want to request new icons? <a href="{{ page.relative_path }}community/#requesting-new-icons">Here's how</a>.
|
||||
</div>
|
||||
{% endif %}
|
||||
|
@ -15,6 +15,7 @@
|
||||
<li class="divider"></li>
|
||||
<li><a href="{{ page.relative_path }}icons/#new"><i class="icon-shield icon-fixed-width"></i> New Icons in {{ site.font_awesome.version }}</a></li>
|
||||
<li><a href="{{ page.relative_path }}icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i> Web Application Icons</a></li>
|
||||
<li><a href="{{ page.relative_path }}icons/#currency"><i class="icon-gbp icon-fixed-width"></i> Currency Icons</a></li>
|
||||
<li><a href="{{ page.relative_path }}icons/#text-editor"><i class="icon-file-alt icon-fixed-width"></i> Text Editor Icons</a></li>
|
||||
<li><a href="{{ page.relative_path }}icons/#directional"><i class="icon-hand-right icon-fixed-width"></i> Directional Icons</a></li>
|
||||
<li><a href="{{ page.relative_path }}icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i> Video Player Icons</a></li>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<div id="why">
|
||||
<div class="row">
|
||||
<div class="span4">
|
||||
<h4><i class="icon-flag"></i> One Font, {{ site.font_awesome.icon_count }} Icons</h4>
|
||||
<h4><i class="icon-flag"></i> One Font, {{ icons | size }} Icons</h4>
|
||||
In a single collection, Font Awesome is a pictographic language of web-related actions.
|
||||
</div>
|
||||
<div class="span4">
|
||||
|
Binary file not shown.
@ -5,7 +5,7 @@ navbar_active: icons
|
||||
relative_path: ../
|
||||
---
|
||||
{% capture jumbotron_h1 %}<i class="icon-flag icon-large"></i> The Icons{% endcapture %}
|
||||
{% capture jumbotron_p %}The complete set of {{ site.font_awesome.icon_count }} icons in Font Awesome {{ site.font_awesome.version }}{% endcapture %}
|
||||
{% capture jumbotron_p %}The complete set of {{ icons | size }} icons in Font Awesome {{ site.font_awesome.version }}{% endcapture %}
|
||||
|
||||
{% include jumbotron.html %}
|
||||
{% include stripe-social.html %}
|
||||
|
@ -2187,14 +2187,14 @@ icons:
|
||||
aliases:
|
||||
- euro
|
||||
categories:
|
||||
- Web Application Icons
|
||||
- Currency Icons
|
||||
|
||||
- name: GBP
|
||||
id: gbp
|
||||
unicode: f154
|
||||
created: 3.2.0
|
||||
categories:
|
||||
- Web Application Icons
|
||||
- Currency Icons
|
||||
|
||||
- name: US Dollar
|
||||
id: usd
|
||||
@ -2203,7 +2203,7 @@ icons:
|
||||
aliases:
|
||||
- dollar
|
||||
categories:
|
||||
- Web Application Icons
|
||||
- Currency Icons
|
||||
|
||||
- name: Indian Rupee (INR)
|
||||
id: inr
|
||||
@ -2212,7 +2212,7 @@ icons:
|
||||
aliases:
|
||||
- rupee
|
||||
categories:
|
||||
- Web Application Icons
|
||||
- Currency Icons
|
||||
|
||||
- name: Japanese Yen (JPY)
|
||||
id: jpy
|
||||
@ -2221,7 +2221,7 @@ icons:
|
||||
aliases:
|
||||
- yen
|
||||
categories:
|
||||
- Web Application Icons
|
||||
- Currency Icons
|
||||
|
||||
- name: Renminbi (CNY)
|
||||
id: cny
|
||||
@ -2230,7 +2230,7 @@ icons:
|
||||
aliases:
|
||||
- renminbi
|
||||
categories:
|
||||
- Web Application Icons
|
||||
- Currency Icons
|
||||
|
||||
- name: Korean Won (KRW)
|
||||
id: krw
|
||||
@ -2239,4 +2239,4 @@ icons:
|
||||
aliases:
|
||||
- won
|
||||
categories:
|
||||
- Web Application Icons
|
||||
- Currency Icons
|
||||
|
Loading…
Reference in New Issue
Block a user