diff --git a/_config.yml b/_config.yml index 18129a1fc..d4099d787 100644 --- a/_config.yml +++ b/_config.yml @@ -15,8 +15,8 @@ include: [_*.scss] # used in building icon pages icon_meta: src/icons.yml -icon_layout: icon.html # Relative to _layouts directory -icon_destination: icon # Relative to destination +icon_layout: redirect.html # Relative to _layouts directory +icon_destination: icon # Relative to destination fontawesome: version: 4.7.0 diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..cee2ee568 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,5 @@ +{ + "name": "font-awesome", + "version": "4.7.0", + "lockfileVersion": 1 +} diff --git a/src/_layouts/redirect.html b/src/_layouts/redirect.html new file mode 100644 index 000000000..822cad328 --- /dev/null +++ b/src/_layouts/redirect.html @@ -0,0 +1,11 @@ + + + + Redirecting… + + + +

Redirecting…

+ Click here if you are not redirected. + + diff --git a/src/_plugins/icon_page_generator.rb b/src/_plugins/icon_page_generator.rb index 32b7cd428..f84f49667 100644 --- a/src/_plugins/icon_page_generator.rb +++ b/src/_plugins/icon_page_generator.rb @@ -2,6 +2,7 @@ # Create individual pages for each icon in the FontAwesome set require 'yaml' +require 'json' module Jekyll @@ -10,19 +11,17 @@ module Jekyll ## # Take a single icon and render a page for it. - def initialize(site, base, dir, icon) + def initialize(site, base, dir, old_icon_name, new_icon_name, new_icon_style) @site = site @base = base @dir = dir - @name = "#{icon.id}.html" - @icon = icon + @name = "#{old_icon_name}.html" self.process(@name) self.read_yaml(File.join(base, site.config['layouts']), site.config['icon_layout']) - self.data['icon'] = icon - self.data['title'] = "fa-#{icon.id}: " + self.data['title_suffix'] + self.data['redirect_to'] = "https://fontawesome.com/icons/#{new_icon_name}?style=#{new_icon_style}" end end @@ -35,8 +34,35 @@ module Jekyll safe true def generate(site) + styles = { + 'fas' => 'solid', + 'far' => 'regular', + 'fal' => 'light', + 'fab' => 'brands' + } + + shims = JSON.load(File.open(File.join(site.source, 'shims.json'))) + + lookup = shims.inject({}) do |acc, shim| + old_name = shim[0] + new_prefix = shim[1] || 'fas' + new_name = shim[2] || old_name + + acc[shim[0]] = { new_name: new_name, style: styles[new_prefix] } + + acc + end + site.icons.each do |icon| - site.pages << IconPage.new(site, site.source, site.config['icon_destination'], icon) + if lookup.has_key? icon.id + new_icon_name = lookup[icon.id][:new_name] + new_icon_style = lookup[icon.id][:style] + else + new_icon_name = icon.id + new_icon_style = "solid" + end + + site.pages << IconPage.new(site, site.source, site.config['icon_destination'], icon.id, new_icon_name, new_icon_style) end end diff --git a/src/accessibility.html b/src/accessibility.html index f201921ab..0fd654b1f 100644 --- a/src/accessibility.html +++ b/src/accessibility.html @@ -1,39 +1,4 @@ --- -layout: base -title: Font Awesome & Accessibility -navbar_active: accessibility -view_class: v-accessibility -relative_path: ../ +layout: redirect +redirect_to: https://fontawesome.com/how-to-use/accessibility --- -{% capture jumbotron_h1 %}  Accessibility{% endcapture %} -{% capture jumbotron_p %}Make your icons awesome for all of your users{% endcapture %} - -{% include jumbotron.html %} - -
-
-
-
-

- Icons are symbols that can convey a ton of information and really help people comprehend directions, signs, and interfaces. It's important that we create and use them so that they can reach the largest amount of people possible. -

-
-
- {% include accessibility/background.html %} -
-
-
- - - - {% include accessibility/accessibility-facdn.html %} - -
- or -
- - {% include accessibility/accessibility-manual.html %} - {% include accessibility/other.html %} -
diff --git a/src/cheatsheet.html b/src/cheatsheet.html index 5815b8bd3..9cd244158 100644 --- a/src/cheatsheet.html +++ b/src/cheatsheet.html @@ -1,35 +1,4 @@ --- -layout: base -title: Font Awesome Cheatsheet -relative_path: ../ +layout: redirect +redirect_to: https://fontawesome.com/cheatsheet --- -{% capture jumbotron_h1 %}  Cheatsheet{% endcapture %} -{% capture jumbotron_p %}The complete Font Awesome {{ site.fontawesome.version }} icon reference{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
- {% capture stripe_ad_content %} -

- 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. -

- {% endcapture %} - {% include stripe-ad.html %} - - - -
- {% assign sorted_icons = icons | expand_aliases | sort_by:'class' %} - - {% for icon in sorted_icons %} -
- {% if icon.created >= site.fontawesome.major_version %}{{ icon.created }}{% endif %} - - fa-{{ icon.class }} - {% if icon.alias_of %} (alias){% endif %} - [&#x{{ icon.unicode }};] -
- {% endfor %} -
-
diff --git a/src/community.html b/src/community.html index be6877b97..d42f2a75a 100644 --- a/src/community.html +++ b/src/community.html @@ -1,34 +1,4 @@ --- -layout: base -title: The Font Awesome Community -navbar_active: community -relative_path: ../ +layout: redirect +redirect_to: https://fontawesome.com/how-to-use/community --- -{% capture jumbotron_h1 %}  Community{% endcapture %} -{% capture jumbotron_p %}Lots of ways to get involved with Font Awesome{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
- {% capture stripe_ad_content %} -

- Font Awesome has a vibrant community of folks helping each other out. You can - get support, - report bugs, - request new icons, - submit pull requests, and - check upcoming milestones. -

- {% endcapture %} - {% include stripe-ad.html %} - - {% include community/getting-support.html %} - {% include community/requesting-new-icons.html %} - {% include community/reporting-bugs.html %} - {% include community/submitting-pull-requests.html %} - {% include community/project-milestones.html %} - - {% include thanks-to.html %} - {% include tell-me-thanks.html %} -
diff --git a/src/design.html b/src/design.html index 9c5830d74..9cd244158 100644 --- a/src/design.html +++ b/src/design.html @@ -1 +1,4 @@ - +--- +layout: redirect +redirect_to: https://fontawesome.com/cheatsheet +--- diff --git a/src/examples.html b/src/examples.html index 9f14ef11b..83ffa0614 100644 --- a/src/examples.html +++ b/src/examples.html @@ -1,43 +1,4 @@ --- -layout: base -title: Font Awesome Examples -navbar_active: examples -relative_path: ../ +layout: redirect +redirect_to: https://fontawesome.com/how-to-use --- -{% capture jumbotron_h1 %}  Examples{% endcapture %} -{% capture jumbotron_p %}Lots of easy ways to use Font Awesome{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
- {% capture stripe_ad_content %} -

- After you get up and running, you can place Font Awesome icons just about - anywhere with the <i> tag. - Some examples appreciatively re-used from the Bootstrap documentation. -

- {% endcapture %} - {% include stripe-ad.html %} - -
-
- -
-
-

The following examples are kept simple and assume use of Font Awesome CDN, which provides auto-accessibility support. If you are not using the Font Awesome CDN, please see the manual accessibility examples and read more about making your icons more awesome for all users

-
-
- - {% include examples/basic.html %} - {% include examples/larger.html %} - {% include examples/fixed-width.html %} - {% include examples/list.html %} - {% include examples/bordered-pulled.html %} - {% include examples/animated.html %} - {% include examples/rotated-flipped.html %} - {% include examples/stacked.html %} - {% include examples/bootstrap.html %} - {% include examples/custom.html %} - {% include examples/accessible.html %} -
diff --git a/src/get-started.html b/src/get-started.html index 529462b62..2206d082f 100644 --- a/src/get-started.html +++ b/src/get-started.html @@ -1,263 +1,4 @@ --- -layout: base -title: Get Started with Font Awesome -navbar_active: get-started -view_class: v-get-started -relative_path: ../ +layout: redirect +redirect_to: https://fontawesome.com/get-started --- -{% capture jumbotron_h1 %}  Get Started{% endcapture %} -{% capture jumbotron_p %}Easy ways to get Font Awesome {{ site.fontawesome.version }} onto your website{% endcapture %} - -{% include jumbotron.html %} - -
- -
-
- - -

Font Awesome CDN is the easiest way to get Font Awesome on your website or app, all with just a single line of code. No downloading or installing!

- -
- - - -
- - - - -

- -
-
- We create new embed codes for each website so you can quickly upgrade and change your preferences all without ever pushing code. To do this, we need an email - address so we know which embed codes are yours and so you can come back and manage them. -
-
- -
-
-

Icons on your site. Fast.

-

Don't mess with files locally or in production. You'll get all of Font Awesome's {{ icons| size }} icons plus CSS toolkit - all optimized for speed and no hassle.

-
- -
-

Super-simple upgrades

-

Since each site gets a unique embed code, you can easily upgrade to the latest version of Font Awesome, all without pushing any code. Easy peasy.

-
- -
-

Auto accessibility support

-

Font Awesome CDN helps you automate accessibility support more easily so your icons work for the most people possible. Read up on our accessibility best practices.

-
- -
-

Async your icons

-

Want to speed up your page loads? So do we. Have your icons load in the background so your site loads faster.

-
-
-
- -
- or -
- -
- - -
-
-

- Want to manage and host Font Awesome assets yourself? You can - download, - customize, and use the icons and default styling manually. Both CSS and CSS Preprocessor (Sass and Less) formats are included.

-
- - -
- -
-

Using CSS

- -
    -
  1. Copy the entire font-awesome directory into your project.
  2. -
  3. - In the <head> of your html, reference the location to your font-awesome.min.css. -{% highlight html %} - -{% endhighlight %} -
  4. -
  5. Check out the examples to start using Font Awesome!
  6. -
-
- -
-

Using Sass or Less

- -

Use this method to customize Font Awesome {{ site.fontawesome.version }} using Less or Sass.

-
    -
  1. Copy the font-awesome/ directory into your project.
  2. -
  3. - Open your project's font-awesome/less/variables.less or font-awesome/scss/_variables.scss and edit the @fa-font-path or $fa-font-path - variable to point to your font directory. -{% highlight scss %} -@fa-font-path: "../font"; -{% endhighlight %} -

    The font path is relative from your compiled CSS directory.

    -
  4. -
  5. Re-compile your Less or Sass if using a static compiler. Otherwise, you should be good to go.
  6. -
  7. Check out the examples to start using Font Awesome!
  8. -
-
-
- -
- or -
- -
- - -
-

Less Ruby Gem

-

- Use the Official Font Awesome Less Ruby Gem to easily get Font - Awesome Less into a Rails project. Generously maintained by @supercodepoet. -

-
    -
  1. - Add this line to your application's Gemfile: -{% highlight bash %} -gem 'font-awesome-less' -{% endhighlight %} -
  2. -
  3. - And then execute: -{% highlight bash %} -$ bundle -{% endhighlight %} -
  4. -
  5. Or install it yourself as: -{% highlight bash %} -$ gem install font-awesome-less -{% endhighlight %} -
  6. -
-

- If you use Rails, add this to your e.g. application.less: -

-{% highlight css %} -@import "font-awesome-sprockets"; -@import "font-awesome"; -{% endhighlight %} -
- -
-

Sass Ruby Gem

-

- Use the Official Font Awesome Sass Ruby Gem to easily get Font - Awesome Sass into a Rails or Compass project. Generously maintained by @supercodepoet. -

-
    -
  1. - Add this line to your application's Gemfile: -{% highlight bash %} -gem 'font-awesome-sass' -{% endhighlight %} -
  2. -
  3. - And then execute: -{% highlight bash %} -$ bundle -{% endhighlight %} -
  4. -
  5. Or install it yourself as: -{% highlight bash %} -$ gem install font-awesome-sass -{% endhighlight %} -
  6. -
-

- If you use Rails, add this to your e.g. application.scss: -

-{% highlight css %} -@import "font-awesome-sprockets"; -@import "font-awesome"; -{% endhighlight %} -
-
- -
- -
- -
-
-

Validators

-

In order to provide the best possible experience to old and buggy browsers, Font Awesome uses CSS browser hacks in several places to target special CSS to certain browser versions in order to work around bugs in the browsers themselves. These hacks understandably cause CSS validators to complain that they are invalid. In a couple places, we also use bleeding-edge CSS features that aren't yet fully standardized, but these are used purely for progressive enhancement.

-

These validation warnings don't matter in practice since the non-hacky portion of our CSS does fully validate and the hacky portions don't interfere with the proper functioning of the non-hacky portion, hence why we deliberately ignore these particular warnings.

-

Getting started - Validators by Bootstrap Team is licensed under CC BY 3.0

-
- -
-

Internet Explorer 8 and @font-face

-

IE8 has some issues with @font-face when combined with :before. - Font Awesome uses that combination. If a page is cached, and loaded without the mouse over the window - (i.e. hit the refresh button or load something in an iframe) then the page gets rendered before the font loads. - Hovering over the page (body) will show some of the icons and hovering over the remaining icons will show those as well. - See issue #954 for details.

-

Getting started - Internet Explorer 8 and @font-face by Bootstrap Team is licensed under CC BY 3.0

-
-
- -
-
-

Need IE7 Support?

-

- If you need IE7 support, you have my condolences. Really. Font Awesome {{ site.fontawesome.version }} - doesn't support IE7, but an older version does. You'll need to check out the - 3.2.1 instructions for using IE7. Then go complain to - whoever decided your project needs IE7 support. -

-
- -
-

Troubleshooting

-

If you're having trouble with Font Awesome, make sure to check out the - troubleshooting wiki page. - Generously maintained by @gtagliala.

-
-
- -{% include modals/download.html %} diff --git a/src/icons.html b/src/icons.html index 37b7871df..a9f641e36 100644 --- a/src/icons.html +++ b/src/icons.html @@ -1,97 +1,4 @@ --- -layout: base -title: Font Awesome Icons -navbar_active: icons -relative_path: ../ +layout: redirect +redirect_to: https://fontawesome.com/icons --- -{% capture jumbotron_h1 %}  The Icons{% endcapture %} -{% capture jumbotron_p %}The complete set of {{ icons | size }} icons in Font Awesome {{ site.fontawesome.version }}{% endcapture %} - -{% include jumbotron.html %} - -
- {% capture stripe_ad_content %} -

- 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? Here's how. - - Need vectors or want to use on the desktop? Check the cheatsheet. -

- {% endcapture %} - {% include stripe-ad.html %} - -
-
- -
- -
- -
-
- {% include icons/new.html %} - {% include icons/web-application.html %} - {% include icons/accessibility.html %} - {% include icons/hand.html %} - {% include icons/transportation.html %} - {% include icons/gender.html %} - {% include icons/file-type.html %} - {% include icons/spinner.html %} - {% include icons/form-control.html %} - {% include icons/payment.html %} - {% include icons/chart.html %} - {% include icons/currency.html %} - {% include icons/text-editor.html %} - {% include icons/directional.html %} - {% include icons/video-player.html %} - {% include icons/brand.html %} - {% include icons/medical.html %} -
- - -
diff --git a/src/index.html b/src/index.html index af1f6297d..3da236aec 100644 --- a/src/index.html +++ b/src/index.html @@ -1,24 +1,4 @@ --- -layout: base -title: Font Awesome, the iconic font and CSS toolkit -navbar_active: home -relative_path: ./ +layout: redirect +redirect_to: https://fontawesome.com --- - -{% include jumbotron-carousel.html %} -{% include stripe-social.html %} - -
- {% capture stripe_ad_content %} -

- Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, - and anything that can be done with the power of CSS. -

- {% endcapture %} - {% include stripe-ad.html %} - - {% include why.html %} - {% include thanks-to.html %} -
- -{% include modals/download.html %} diff --git a/src/license.html b/src/license.html index 1cceb0493..65164c9e8 100644 --- a/src/license.html +++ b/src/license.html @@ -1,72 +1,4 @@ --- -layout: base -title: Font Awesome License -navbar_active: license -relative_path: ../ +layout: redirect +redirect_to: https://fontawesome.com/license --- -{% capture jumbotron_h1 %}  License{% endcapture %} -{% capture jumbotron_p %}The full details of how Font Awesome is licensed{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
- {% capture stripe_ad_content %} -

- Font Awesome is fully open source and is GPL friendly. You can use it for commercial projects, open source - projects, or really just about whatever you want. -

- {% endcapture %} - {% include stripe-ad.html %} - -
-
-
    -
  • - Attribution is no longer required as of Font Awesome 3.0 but is much appreciated: - "Font Awesome by Dave Gandy - http://fontawesome.io". -
  • -
-
-
- -
- -
    -
  • - Applies to all desktop and webfont files in the following directory: - font-awesome/fonts/. -
  • -
  • License: {{ site.fontawesome.license.font.version }}
  • -
  • URL: {{ site.fontawesome.license.font.url }}
  • -
-
- -
- -
    -
  • - Applies to all CSS and LESS files in the following directories: - font-awesome/css/, - font-awesome/less/, and - font-awesome/scss/. -
  • -
  • License: {{ site.fontawesome.license.code.version }}
  • -
  • URL: {{ site.fontawesome.license.code.url }}
  • -
-
- -
- - -
- -
- - {% include brand-license.html %} -
-
diff --git a/src/shims.json b/src/shims.json new file mode 100644 index 000000000..8decb7ade --- /dev/null +++ b/src/shims.json @@ -0,0 +1,2302 @@ +[ + [ + "glass", + null, + "glass-martini" + ], + [ + "meetup", + "fab", + null + ], + [ + "star-o", + "far", + "star" + ], + [ + "remove", + null, + "times" + ], + [ + "close", + null, + "times" + ], + [ + "gear", + null, + "cog" + ], + [ + "trash-o", + "far", + "trash-alt" + ], + [ + "file-o", + "far", + "file" + ], + [ + "clock-o", + "far", + "clock" + ], + [ + "arrow-circle-o-down", + "far", + "arrow-alt-circle-down" + ], + [ + "arrow-circle-o-up", + "far", + "arrow-alt-circle-up" + ], + [ + "play-circle-o", + "far", + "play-circle" + ], + [ + "repeat", + null, + "redo" + ], + [ + "rotate-right", + null, + "redo" + ], + [ + "refresh", + null, + "sync" + ], + [ + "list-alt", + "far", + null + ], + [ + "dedent", + null, + "outdent" + ], + [ + "video-camera", + null, + "video" + ], + [ + "picture-o", + "far", + "image" + ], + [ + "photo", + "far", + "image" + ], + [ + "image", + "far", + "image" + ], + [ + "pencil", + null, + "pencil-alt" + ], + [ + "map-marker", + null, + "map-marker-alt" + ], + [ + "pencil-square-o", + "far", + "edit" + ], + [ + "share-square-o", + "far", + "share-square" + ], + [ + "check-square-o", + "far", + "check-square" + ], + [ + "arrows", + null, + "arrows-alt" + ], + [ + "times-circle-o", + "far", + "times-circle" + ], + [ + "check-circle-o", + "far", + "check-circle" + ], + [ + "mail-forward", + null, + "share" + ], + [ + "eye-slash", + "far", + null + ], + [ + "warning", + null, + "exclamation-triangle" + ], + [ + "calendar", + null, + "calendar-alt" + ], + [ + "arrows-v", + null, + "arrows-alt-v" + ], + [ + "arrows-h", + null, + "arrows-alt-h" + ], + [ + "bar-chart", + "far", + "chart-bar" + ], + [ + "bar-chart-o", + "far", + "chart-bar" + ], + [ + "twitter-square", + "fab", + null + ], + [ + "facebook-square", + "fab", + null + ], + [ + "gears", + null, + "cogs" + ], + [ + "thumbs-o-up", + "far", + "thumbs-up" + ], + [ + "thumbs-o-down", + "far", + "thumbs-down" + ], + [ + "heart-o", + "far", + "heart" + ], + [ + "sign-out", + null, + "sign-out-alt" + ], + [ + "linkedin-square", + "fab", + "linkedin" + ], + [ + "thumb-tack", + null, + "thumbtack" + ], + [ + "external-link", + null, + "external-link-alt" + ], + [ + "sign-in", + null, + "sign-in-alt" + ], + [ + "github-square", + "fab", + null + ], + [ + "lemon-o", + "far", + "lemon" + ], + [ + "square-o", + "far", + "square" + ], + [ + "bookmark-o", + "far", + "bookmark" + ], + [ + "twitter", + "fab", + null + ], + [ + "facebook", + "fab", + "facebook-f" + ], + [ + "facebook-f", + "fab", + "facebook-f" + ], + [ + "github", + "fab", + null + ], + [ + "credit-card", + "far", + null + ], + [ + "feed", + null, + "rss" + ], + [ + "hdd-o", + "far", + "hdd" + ], + [ + "hand-o-right", + "far", + "hand-point-right" + ], + [ + "hand-o-left", + "far", + "hand-point-left" + ], + [ + "hand-o-up", + "far", + "hand-point-up" + ], + [ + "hand-o-down", + "far", + "hand-point-down" + ], + [ + "arrows-alt", + null, + "expand-arrows-alt" + ], + [ + "group", + null, + "users" + ], + [ + "chain", + null, + "link" + ], + [ + "scissors", + null, + "cut" + ], + [ + "files-o", + "far", + "copy" + ], + [ + "floppy-o", + "far", + "save" + ], + [ + "navicon", + null, + "bars" + ], + [ + "reorder", + null, + "bars" + ], + [ + "pinterest", + "fab", + null + ], + [ + "pinterest-square", + "fab", + null + ], + [ + "google-plus-square", + "fab", + null + ], + [ + "google-plus", + "fab", + "google-plus-g" + ], + [ + "money", + "far", + "money-bill-alt" + ], + [ + "unsorted", + null, + "sort" + ], + [ + "sort-desc", + null, + "sort-down" + ], + [ + "sort-asc", + null, + "sort-up" + ], + [ + "linkedin", + "fab", + "linkedin-in" + ], + [ + "rotate-left", + null, + "undo" + ], + [ + "legal", + null, + "gavel" + ], + [ + "tachometer", + null, + "tachometer-alt" + ], + [ + "dashboard", + null, + "tachometer-alt" + ], + [ + "comment-o", + "far", + "comment" + ], + [ + "comments-o", + "far", + "comments" + ], + [ + "flash", + null, + "bolt" + ], + [ + "clipboard", + "far", + null + ], + [ + "paste", + "far", + "clipboard" + ], + [ + "lightbulb-o", + "far", + "lightbulb" + ], + [ + "exchange", + null, + "exchange-alt" + ], + [ + "cloud-download", + null, + "cloud-download-alt" + ], + [ + "cloud-upload", + null, + "cloud-upload-alt" + ], + [ + "bell-o", + "far", + "bell" + ], + [ + "cutlery", + null, + "utensils" + ], + [ + "file-text-o", + "far", + "file-alt" + ], + [ + "building-o", + "far", + "building" + ], + [ + "hospital-o", + "far", + "hospital" + ], + [ + "tablet", + null, + "tablet-alt" + ], + [ + "mobile", + null, + "mobile-alt" + ], + [ + "mobile-phone", + null, + "mobile-alt" + ], + [ + "circle-o", + "far", + "circle" + ], + [ + "mail-reply", + null, + "reply" + ], + [ + "github-alt", + "fab", + null + ], + [ + "folder-o", + "far", + "folder" + ], + [ + "folder-open-o", + "far", + "folder-open" + ], + [ + "smile-o", + "far", + "smile" + ], + [ + "frown-o", + "far", + "frown" + ], + [ + "meh-o", + "far", + "meh" + ], + [ + "keyboard-o", + "far", + "keyboard" + ], + [ + "flag-o", + "far", + "flag" + ], + [ + "mail-reply-all", + null, + "reply-all" + ], + [ + "star-half-o", + "far", + "star-half" + ], + [ + "star-half-empty", + "far", + "star-half" + ], + [ + "star-half-full", + "far", + "star-half" + ], + [ + "code-fork", + null, + "code-branch" + ], + [ + "chain-broken", + null, + "unlink" + ], + [ + "shield", + null, + "shield-alt" + ], + [ + "calendar-o", + "far", + "calendar" + ], + [ + "maxcdn", + "fab", + null + ], + [ + "html5", + "fab", + null + ], + [ + "css3", + "fab", + null + ], + [ + "ticket", + null, + "ticket-alt" + ], + [ + "minus-square-o", + "far", + "minus-square" + ], + [ + "level-up", + null, + "level-up-alt" + ], + [ + "level-down", + null, + "level-down-alt" + ], + [ + "pencil-square", + null, + "pen-square" + ], + [ + "external-link-square", + null, + "external-link-square-alt" + ], + [ + "compass", + "far", + null + ], + [ + "caret-square-o-down", + "far", + "caret-square-down" + ], + [ + "toggle-down", + "far", + "caret-square-down" + ], + [ + "caret-square-o-up", + "far", + "caret-square-up" + ], + [ + "toggle-up", + "far", + "caret-square-up" + ], + [ + "caret-square-o-right", + "far", + "caret-square-right" + ], + [ + "toggle-right", + "far", + "caret-square-right" + ], + [ + "eur", + null, + "euro-sign" + ], + [ + "euro", + null, + "euro-sign" + ], + [ + "gbp", + null, + "pound-sign" + ], + [ + "usd", + null, + "dollar-sign" + ], + [ + "dollar", + null, + "dollar-sign" + ], + [ + "inr", + null, + "rupee-sign" + ], + [ + "rupee", + null, + "rupee-sign" + ], + [ + "jpy", + null, + "yen-sign" + ], + [ + "cny", + null, + "yen-sign" + ], + [ + "rmb", + null, + "yen-sign" + ], + [ + "yen", + null, + "yen-sign" + ], + [ + "rub", + null, + "ruble-sign" + ], + [ + "ruble", + null, + "ruble-sign" + ], + [ + "rouble", + null, + "ruble-sign" + ], + [ + "krw", + null, + "won-sign" + ], + [ + "won", + null, + "won-sign" + ], + [ + "btc", + "fab", + null + ], + [ + "bitcoin", + "fab", + "btc" + ], + [ + "file-text", + null, + "file-alt" + ], + [ + "sort-alpha-asc", + null, + "sort-alpha-down" + ], + [ + "sort-alpha-desc", + null, + "sort-alpha-up" + ], + [ + "sort-amount-asc", + null, + "sort-amount-down" + ], + [ + "sort-amount-desc", + null, + "sort-amount-up" + ], + [ + "sort-numeric-asc", + null, + "sort-numeric-down" + ], + [ + "sort-numeric-desc", + null, + "sort-numeric-up" + ], + [ + "youtube-square", + "fab", + null + ], + [ + "youtube", + "fab", + null + ], + [ + "xing", + "fab", + null + ], + [ + "xing-square", + "fab", + null + ], + [ + "youtube-play", + "fab", + "youtube" + ], + [ + "dropbox", + "fab", + null + ], + [ + "stack-overflow", + "fab", + null + ], + [ + "instagram", + "fab", + null + ], + [ + "flickr", + "fab", + null + ], + [ + "adn", + "fab", + null + ], + [ + "bitbucket", + "fab", + null + ], + [ + "bitbucket-square", + "fab", + "bitbucket" + ], + [ + "tumblr", + "fab", + null + ], + [ + "tumblr-square", + "fab", + null + ], + [ + "long-arrow-down", + null, + "long-arrow-alt-down" + ], + [ + "long-arrow-up", + null, + "long-arrow-alt-up" + ], + [ + "long-arrow-left", + null, + "long-arrow-alt-left" + ], + [ + "long-arrow-right", + null, + "long-arrow-alt-right" + ], + [ + "apple", + "fab", + null + ], + [ + "windows", + "fab", + null + ], + [ + "android", + "fab", + null + ], + [ + "linux", + "fab", + null + ], + [ + "dribbble", + "fab", + null + ], + [ + "skype", + "fab", + null + ], + [ + "foursquare", + "fab", + null + ], + [ + "trello", + "fab", + null + ], + [ + "gratipay", + "fab", + null + ], + [ + "gittip", + "fab", + "gratipay" + ], + [ + "sun-o", + "far", + "sun" + ], + [ + "moon-o", + "far", + "moon" + ], + [ + "vk", + "fab", + null + ], + [ + "weibo", + "fab", + null + ], + [ + "renren", + "fab", + null + ], + [ + "pagelines", + "fab", + null + ], + [ + "stack-exchange", + "fab", + null + ], + [ + "arrow-circle-o-right", + "far", + "arrow-alt-circle-right" + ], + [ + "arrow-circle-o-left", + "far", + "arrow-alt-circle-left" + ], + [ + "caret-square-o-left", + "far", + "caret-square-left" + ], + [ + "toggle-left", + "far", + "caret-square-left" + ], + [ + "dot-circle-o", + "far", + "dot-circle" + ], + [ + "vimeo-square", + "fab", + null + ], + [ + "try", + null, + "lira-sign" + ], + [ + "turkish-lira", + null, + "lira-sign" + ], + [ + "plus-square-o", + "far", + "plus-square" + ], + [ + "slack", + "fab", + null + ], + [ + "wordpress", + "fab", + null + ], + [ + "openid", + "fab", + null + ], + [ + "institution", + null, + "university" + ], + [ + "bank", + null, + "university" + ], + [ + "mortar-board", + null, + "graduation-cap" + ], + [ + "yahoo", + "fab", + null + ], + [ + "google", + "fab", + null + ], + [ + "reddit", + "fab", + null + ], + [ + "reddit-square", + "fab", + null + ], + [ + "stumbleupon-circle", + "fab", + null + ], + [ + "stumbleupon", + "fab", + null + ], + [ + "delicious", + "fab", + null + ], + [ + "digg", + "fab", + null + ], + [ + "pied-piper-pp", + "fab", + null + ], + [ + "pied-piper-alt", + "fab", + null + ], + [ + "drupal", + "fab", + null + ], + [ + "joomla", + "fab", + null + ], + [ + "spoon", + null, + "utensil-spoon" + ], + [ + "behance", + "fab", + null + ], + [ + "behance-square", + "fab", + null + ], + [ + "steam", + "fab", + null + ], + [ + "steam-square", + "fab", + null + ], + [ + "automobile", + null, + "car" + ], + [ + "cab", + null, + "taxi" + ], + [ + "spotify", + "fab", + null + ], + [ + "envelope-o", + "far", + "envelope" + ], + [ + "soundcloud", + "fab", + null + ], + [ + "file-pdf-o", + "far", + "file-pdf" + ], + [ + "file-word-o", + "far", + "file-word" + ], + [ + "file-excel-o", + "far", + "file-excel" + ], + [ + "file-powerpoint-o", + "far", + "file-powerpoint" + ], + [ + "file-image-o", + "far", + "file-image" + ], + [ + "file-photo-o", + "far", + "file-image" + ], + [ + "file-picture-o", + "far", + "file-image" + ], + [ + "file-archive-o", + "far", + "file-archive" + ], + [ + "file-zip-o", + "far", + "file-archive" + ], + [ + "file-audio-o", + "far", + "file-audio" + ], + [ + "file-sound-o", + "far", + "file-audio" + ], + [ + "file-video-o", + "far", + "file-video" + ], + [ + "file-movie-o", + "far", + "file-video" + ], + [ + "file-code-o", + "far", + "file-code" + ], + [ + "vine", + "fab", + null + ], + [ + "codepen", + "fab", + null + ], + [ + "jsfiddle", + "fab", + null + ], + [ + "life-ring", + "far", + null + ], + [ + "life-bouy", + "far", + "life-ring" + ], + [ + "life-buoy", + "far", + "life-ring" + ], + [ + "life-saver", + "far", + "life-ring" + ], + [ + "support", + "far", + "life-ring" + ], + [ + "circle-o-notch", + null, + "circle-notch" + ], + [ + "rebel", + "fab", + null + ], + [ + "ra", + "fab", + "rebel" + ], + [ + "resistance", + "fab", + "rebel" + ], + [ + "empire", + "fab", + null + ], + [ + "ge", + "fab", + "empire" + ], + [ + "git-square", + "fab", + null + ], + [ + "git", + "fab", + null + ], + [ + "hacker-news", + "fab", + null + ], + [ + "y-combinator-square", + "fab", + "hacker-news" + ], + [ + "yc-square", + "fab", + "hacker-news" + ], + [ + "tencent-weibo", + "fab", + null + ], + [ + "qq", + "fab", + null + ], + [ + "weixin", + "fab", + null + ], + [ + "wechat", + "fab", + "weixin" + ], + [ + "send", + null, + "paper-plane" + ], + [ + "paper-plane-o", + "far", + "paper-plane" + ], + [ + "send-o", + "far", + "paper-plane" + ], + [ + "circle-thin", + "far", + "circle" + ], + [ + "header", + null, + "heading" + ], + [ + "sliders", + null, + "sliders-h" + ], + [ + "futbol-o", + "far", + "futbol" + ], + [ + "soccer-ball-o", + "far", + "futbol" + ], + [ + "slideshare", + "fab", + null + ], + [ + "twitch", + "fab", + null + ], + [ + "yelp", + "fab", + null + ], + [ + "newspaper-o", + "far", + "newspaper" + ], + [ + "paypal", + "fab", + null + ], + [ + "google-wallet", + "fab", + null + ], + [ + "cc-visa", + "fab", + null + ], + [ + "cc-mastercard", + "fab", + null + ], + [ + "cc-discover", + "fab", + null + ], + [ + "cc-amex", + "fab", + null + ], + [ + "cc-paypal", + "fab", + null + ], + [ + "cc-stripe", + "fab", + null + ], + [ + "bell-slash-o", + "far", + "bell-slash" + ], + [ + "trash", + null, + "trash-alt" + ], + [ + "copyright", + "far", + null + ], + [ + "eyedropper", + null, + "eye-dropper" + ], + [ + "area-chart", + null, + "chart-area" + ], + [ + "pie-chart", + null, + "chart-pie" + ], + [ + "line-chart", + null, + "chart-line" + ], + [ + "lastfm", + "fab", + null + ], + [ + "lastfm-square", + "fab", + null + ], + [ + "ioxhost", + "fab", + null + ], + [ + "angellist", + "fab", + null + ], + [ + "cc", + "far", + "closed-captioning" + ], + [ + "ils", + null, + "shekel-sign" + ], + [ + "shekel", + null, + "shekel-sign" + ], + [ + "sheqel", + null, + "shekel-sign" + ], + [ + "meanpath", + "fab", + "font-awesome" + ], + [ + "buysellads", + "fab", + null + ], + [ + "connectdevelop", + "fab", + null + ], + [ + "dashcube", + "fab", + null + ], + [ + "forumbee", + "fab", + null + ], + [ + "leanpub", + "fab", + null + ], + [ + "sellsy", + "fab", + null + ], + [ + "shirtsinbulk", + "fab", + null + ], + [ + "simplybuilt", + "fab", + null + ], + [ + "skyatlas", + "fab", + null + ], + [ + "diamond", + "far", + "gem" + ], + [ + "intersex", + null, + "transgender" + ], + [ + "facebook-official", + "fab", + "facebook" + ], + [ + "pinterest-p", + "fab", + null + ], + [ + "whatsapp", + "fab", + null + ], + [ + "hotel", + null, + "bed" + ], + [ + "viacoin", + "fab", + null + ], + [ + "medium", + "fab", + null + ], + [ + "y-combinator", + "fab", + null + ], + [ + "yc", + "fab", + "y-combinator" + ], + [ + "optin-monster", + "fab", + null + ], + [ + "opencart", + "fab", + null + ], + [ + "expeditedssl", + "fab", + null + ], + [ + "battery-4", + null, + "battery-full" + ], + [ + "battery", + null, + "battery-full" + ], + [ + "battery-3", + null, + "battery-three-quarters" + ], + [ + "battery-2", + null, + "battery-half" + ], + [ + "battery-1", + null, + "battery-quarter" + ], + [ + "battery-0", + null, + "battery-empty" + ], + [ + "object-group", + "far", + null + ], + [ + "object-ungroup", + "far", + null + ], + [ + "sticky-note-o", + "far", + "sticky-note" + ], + [ + "cc-jcb", + "fab", + null + ], + [ + "cc-diners-club", + "fab", + null + ], + [ + "clone", + "far", + null + ], + [ + "hourglass-o", + "far", + "hourglass" + ], + [ + "hourglass-1", + null, + "hourglass-start" + ], + [ + "hourglass-2", + null, + "hourglass-half" + ], + [ + "hourglass-3", + null, + "hourglass-end" + ], + [ + "hand-rock-o", + "far", + "hand-rock" + ], + [ + "hand-grab-o", + "far", + "hand-rock" + ], + [ + "hand-paper-o", + "far", + "hand-paper" + ], + [ + "hand-stop-o", + "far", + "hand-paper" + ], + [ + "hand-scissors-o", + "far", + "hand-scissors" + ], + [ + "hand-lizard-o", + "far", + "hand-lizard" + ], + [ + "hand-spock-o", + "far", + "hand-spock" + ], + [ + "hand-pointer-o", + "far", + "hand-pointer" + ], + [ + "hand-peace-o", + "far", + "hand-peace" + ], + [ + "registered", + "far", + null + ], + [ + "creative-commons", + "fab", + null + ], + [ + "gg", + "fab", + null + ], + [ + "gg-circle", + "fab", + null + ], + [ + "tripadvisor", + "fab", + null + ], + [ + "odnoklassniki", + "fab", + null + ], + [ + "odnoklassniki-square", + "fab", + null + ], + [ + "get-pocket", + "fab", + null + ], + [ + "wikipedia-w", + "fab", + null + ], + [ + "safari", + "fab", + null + ], + [ + "chrome", + "fab", + null + ], + [ + "firefox", + "fab", + null + ], + [ + "opera", + "fab", + null + ], + [ + "internet-explorer", + "fab", + null + ], + [ + "television", + null, + "tv" + ], + [ + "contao", + "fab", + null + ], + [ + "500px", + "fab", + null + ], + [ + "amazon", + "fab", + null + ], + [ + "calendar-plus-o", + "far", + "calendar-plus" + ], + [ + "calendar-minus-o", + "far", + "calendar-minus" + ], + [ + "calendar-times-o", + "far", + "calendar-times" + ], + [ + "calendar-check-o", + "far", + "calendar-check" + ], + [ + "map-o", + "far", + "map" + ], + [ + "commenting", + null, + "comment-alt" + ], + [ + "commenting-o", + "far", + "comment-alt" + ], + [ + "houzz", + "fab", + null + ], + [ + "vimeo", + "fab", + "vimeo-v" + ], + [ + "black-tie", + "fab", + null + ], + [ + "fonticons", + "fab", + null + ], + [ + "reddit-alien", + "fab", + null + ], + [ + "edge", + "fab", + null + ], + [ + "credit-card-alt", + null, + "credit-card" + ], + [ + "codiepie", + "fab", + null + ], + [ + "modx", + "fab", + null + ], + [ + "fort-awesome", + "fab", + null + ], + [ + "usb", + "fab", + null + ], + [ + "product-hunt", + "fab", + null + ], + [ + "mixcloud", + "fab", + null + ], + [ + "scribd", + "fab", + null + ], + [ + "pause-circle-o", + "far", + "pause-circle" + ], + [ + "stop-circle-o", + "far", + "stop-circle" + ], + [ + "bluetooth", + "fab", + null + ], + [ + "bluetooth-b", + "fab", + null + ], + [ + "gitlab", + "fab", + null + ], + [ + "wpbeginner", + "fab", + null + ], + [ + "wpforms", + "fab", + null + ], + [ + "envira", + "fab", + null + ], + [ + "wheelchair-alt", + "fab", + "accessible-icon" + ], + [ + "question-circle-o", + "far", + "question-circle" + ], + [ + "volume-control-phone", + null, + "phone-volume" + ], + [ + "asl-interpreting", + null, + "american-sign-language-interpreting" + ], + [ + "deafness", + null, + "deaf" + ], + [ + "hard-of-hearing", + null, + "deaf" + ], + [ + "glide", + "fab", + null + ], + [ + "glide-g", + "fab", + null + ], + [ + "signing", + null, + "sign-language" + ], + [ + "viadeo", + "fab", + null + ], + [ + "viadeo-square", + "fab", + null + ], + [ + "snapchat", + "fab", + null + ], + [ + "snapchat-ghost", + "fab", + null + ], + [ + "snapchat-square", + "fab", + null + ], + [ + "pied-piper", + "fab", + null + ], + [ + "first-order", + "fab", + null + ], + [ + "yoast", + "fab", + null + ], + [ + "themeisle", + "fab", + null + ], + [ + "google-plus-official", + "fab", + "google-plus" + ], + [ + "google-plus-circle", + "fab", + "google-plus" + ], + [ + "font-awesome", + "fab", + null + ], + [ + "fa", + "fab", + "font-awesome" + ], + [ + "handshake-o", + "far", + "handshake" + ], + [ + "envelope-open-o", + "far", + "envelope-open" + ], + [ + "linode", + "fab", + null + ], + [ + "address-book-o", + "far", + "address-book" + ], + [ + "vcard", + null, + "address-card" + ], + [ + "address-card-o", + "far", + "address-card" + ], + [ + "vcard-o", + "far", + "address-card" + ], + [ + "user-circle-o", + "far", + "user-circle" + ], + [ + "user-o", + "far", + "user" + ], + [ + "id-badge", + "far", + null + ], + [ + "drivers-license", + null, + "id-card" + ], + [ + "id-card-o", + "far", + "id-card" + ], + [ + "drivers-license-o", + "far", + "id-card" + ], + [ + "quora", + "fab", + null + ], + [ + "free-code-camp", + "fab", + null + ], + [ + "telegram", + "fab", + null + ], + [ + "thermometer-4", + null, + "thermometer-full" + ], + [ + "thermometer", + null, + "thermometer-full" + ], + [ + "thermometer-3", + null, + "thermometer-three-quarters" + ], + [ + "thermometer-2", + null, + "thermometer-half" + ], + [ + "thermometer-1", + null, + "thermometer-quarter" + ], + [ + "thermometer-0", + null, + "thermometer-empty" + ], + [ + "bathtub", + null, + "bath" + ], + [ + "s15", + null, + "bath" + ], + [ + "window-maximize", + "far", + null + ], + [ + "window-restore", + "far", + null + ], + [ + "times-rectangle", + null, + "window-close" + ], + [ + "window-close-o", + "far", + "window-close" + ], + [ + "times-rectangle-o", + "far", + "window-close" + ], + [ + "bandcamp", + "fab", + null + ], + [ + "grav", + "fab", + null + ], + [ + "etsy", + "fab", + null + ], + [ + "imdb", + "fab", + null + ], + [ + "ravelry", + "fab", + null + ], + [ + "eercast", + "fab", + "sellcast" + ], + [ + "snowflake-o", + "far", + "snowflake" + ], + [ + "superpowers", + "fab", + null + ], + [ + "wpexplorer", + "fab", + null + ], + [ + "deviantart", + "fab", + null + ] +] \ No newline at end of file diff --git a/src/store.html b/src/store.html index 325b3c2c8..3da236aec 100644 --- a/src/store.html +++ b/src/store.html @@ -1,63 +1,4 @@ --- -layout: base -title: Official Merchandise -navbar_active: store -view_class: v-store -relative_path: ../ +layout: redirect +redirect_to: https://fontawesome.com --- -{% capture jumbotron_h1 %}  Awesome Swag{% endcapture %} -{% capture jumbotron_p %}Show your love & support of Font Awesome with official merchandise!{% endcapture %} - -{% include jumbotron.html %} - -
- -
-
-
- {% include products/fa-ther-tee.html %} -
-
- {% include products/space-shuttle-tee.html %} -
-
- {% include products/rock-paper-scissors-lizard-spock-tee.html %} -
-
- {% include products/white-logo-tee.html %} -
-
- {% include products/camera-retro-tee.html %} -
-
- {% include products/old-skool-tee.html %} -
-
- {% include products/classics-tee.html %} -
-
- {% include products/green-logo-tee.html %} -
-
- {% include products/cta-suggestions.html %} -
-
- -
- -
-
-

About Font Awesome Products

-

- There might be times where you want to insert a bit of Font Awesome in the real world. That's why we're trying out some schwag. We hope you enjoy our icons and their fun spirit out in the wild and appreciate the support you're showing and giving by doing so. You're putting the Awesome in Font Awesome! -

-
- -
-

Shipping, Tracking, & Refunding Orders

-

- All of our products are managed through Amazon. Shipping rates and schedules are managed through their storefront. You'll be able to track your placed orders and contact Amazon's responsive support about refunds, issues, or questions. Ratings and feedback are always welcome either on the product page or directly to us. -

-
-
-
diff --git a/src/survey.html b/src/survey.html index b134b78c3..3da236aec 100644 --- a/src/survey.html +++ b/src/survey.html @@ -1,7 +1,4 @@ --- -layout: survey -title: Font Awesome + You +layout: redirect +redirect_to: https://fontawesome.com --- - - - diff --git a/src/thanks.html b/src/thanks.html index b22a4eec5..3da236aec 100644 --- a/src/thanks.html +++ b/src/thanks.html @@ -1,29 +1,4 @@ --- -layout: base -title: Thanks for subscribing! -relative_path: ../ +layout: redirect +redirect_to: https://fontawesome.com --- - -
-
-
-
-

You're all set!

-

- Thanks for signing up! - We'll send you email updates on new Font Awesome releases, icons, and other stuff that we're working on. - We won't spam you. Scout's honor! -

- -

What's next?

-

- Want to see what we're working on next? Check out Fort Awesome! We're making it easy to put the perfect icons - on your website. Pick from gorgeous, comprehensive icon sets or copy and paste your own vector icons. -

- - Check out Fort Awesome! - -
-
-
-
diff --git a/src/whats-new.html b/src/whats-new.html index fd3a3cf63..9ff96d1f2 100644 --- a/src/whats-new.html +++ b/src/whats-new.html @@ -1,43 +1,4 @@ --- -layout: base -title: What's New -navbar_active: whats-new -relative_path: ../ +layout: redirect +redirect_to: https://fontawesome.com/updates --- -{% capture jumbotron_h1 %}  What's New{% endcapture %} -{% capture jumbotron_p %}What's New in the latest version — Font Awesome {{ site.fontawesome.minor_version }}{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
- {% capture stripe_ad_content %} -

- Font Awesome is always getting a little awesome-er. So here's what's new in the latest version, Font Awesome - {{ site.fontawesome.minor_version }}. Have some ideas for new features? - Help contribute. -

- {% endcapture %} - {% include stripe-ad.html %} - -
-
-

Accessibility Docs

- Details on how to mark up your icons depending on how you're using them. - Make your site icons usable by the most people, and start here. -
-
-

Better Examples

- Every FA icon example page now has a better, more accessibility-minded - default block of code that users can copy and paste. -
-
-

Accessibility Category

- We've added a new icon category specifically for accessibility and seeded - it with 15 icons to start. Make sure to request more if you need them! -
-
- - {% include icons/new.html %} - {% include new-upgrading.html %} -