mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-07-18 00:48:11 +00:00
First commit
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
<section id="brand">
|
||||
<h2 class="page-header">Brand Icons</h2>
|
||||
|
||||
<div class="alert alert-warning">
|
||||
{% include brand-adblock-warning.html %}
|
||||
</div>
|
||||
|
||||
<div class="row fontawesome-icon-list margin-bottom-lg">
|
||||
{% assign icons_brand = icons | expand_aliases | category:"Brand Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_brand %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class="alert alert-success">
|
||||
{% include brand-license.html %}
|
||||
</div>
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="chart">
|
||||
<h2 class="page-header">Chart Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_chart = icons | expand_aliases | category:"Chart Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_chart %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="currency">
|
||||
<h2 class="page-header">Currency Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_currency = icons | expand_aliases | category:"Currency Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_currency %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="directional">
|
||||
<h2 class="page-header">Directional Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_directional = icons | expand_aliases | category:"Directional Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_directional %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="file-type">
|
||||
<h2 class="page-header">File Type Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_file_type = icons | expand_aliases | category:"File Type Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_file_type %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,11 @@
|
||||
<section id="form-control">
|
||||
<h2 class="page-header">Form Control Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_form_control = icons | expand_aliases | category:"Form Control Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_form_control %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="gender">
|
||||
<h2 class="page-header">Gender Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_gender = icons | expand_aliases | category:"Gender Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_gender %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="hand">
|
||||
<h2 class="page-header">Hand Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_hand = icons | expand_aliases | category:"Hand Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_hand %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="medical">
|
||||
<h2 class="page-header">Medical Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_medical = icons | expand_aliases | category:"Medical Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_medical %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,18 @@
|
||||
<section id="new">
|
||||
<h2 class="page-header">{{ icons | version:site.fontawesome.minor_version | size }} New Icons in {{ site.fontawesome.minor_version }}</h2>
|
||||
{% if page.navbar_active != "icons" %}
|
||||
<div class="margin-botom-large">
|
||||
You asked, Font Awesome delivers with {{ icons | version:site.fontawesome.minor_version | size }} shiny new icons in version {{ site.fontawesome.minor_version }}.
|
||||
Want to request new icons? <a href="{{ page.relative_path }}community/#requesting-new-icons">Here's how</a>.
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_new = icons | expand_aliases | version:site.fontawesome.minor_version | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_new %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="payment">
|
||||
<h2 class="page-header">Payment Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_payment = icons | expand_aliases | category:"Payment Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_payment %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,21 @@
|
||||
<section id="spinner">
|
||||
<h2 class="page-header">Spinner Icons</h2>
|
||||
|
||||
<div class="alert alert-success">
|
||||
<ul class="fa-ul">
|
||||
<li>
|
||||
<i class="fa fa-info-circle fa-lg fa-li"></i>
|
||||
These icons work great with the <code>fa-spin</code> class. Check out the
|
||||
<a href="{{ page.relative_path }}examples/#animated" class="alert-link">spinning icons example</a>.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_spinner = icons | expand_aliases | category:"Spinner Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_spinner %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="text-editor">
|
||||
<h2 class="page-header">Text Editor Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_text_editor = icons | expand_aliases | category:"Text Editor Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_text_editor %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="transportation">
|
||||
<h2 class="page-header">Transportation Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_transportation = icons | expand_aliases | category:"Transportation Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_transportation %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="video-player">
|
||||
<h2 class="page-header">Video Player Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_video_player = icons | expand_aliases | category:"Video Player Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_video_player %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
@ -0,0 +1,12 @@
|
||||
<section id="web-application">
|
||||
<h2 class="page-header">Web Application Icons</h2>
|
||||
|
||||
<div class="row fontawesome-icon-list">
|
||||
{% assign icons_web_application = icons | expand_aliases | category:"Web Application Icons" | sort_by:'class' %}
|
||||
|
||||
{% for icon in icons_web_application %}
|
||||
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</section>
|
Reference in New Issue
Block a user