X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=bower_components%2Ffont-awesome%2Fsrc%2Fget-started.html;h=15f02e8cd428aaca6e079c074d57911d79621341;hb=016d9a2ae924c3999ff9aa279511e32c0bfbe7bb;hp=31e20493241a5796bcb782513e1806c3f41e9142;hpb=61dab0661ba43d3192fa8c2945f7343df44049ed;p=bootswatch diff --git a/bower_components/font-awesome/src/get-started.html b/bower_components/font-awesome/src/get-started.html index 31e2049..15f02e8 100644 --- a/bower_components/font-awesome/src/get-started.html +++ b/bower_components/font-awesome/src/get-started.html @@ -4,12 +4,146 @@ title: Get Started with Font Awesome navbar_active: get-started relative_path: ../ --- -{% capture jumbotron_h1 %}  Get Started{% endcapture %} +{% 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 %} {% include stripe-social.html %}
- {% include get-started.html %} + {% capture stripe_ad_content %} +

+ Setting up Font Awesome can be as simple as adding two lines of code to your website, or you can be a pro and + customize the LESS yourself! Font Awesome even plays nicely with + Bootstrap 3! +

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

Add Font Awesome into your website with a single line of code. You don't even have to download or install anything!

+
    +
  1. + Paste the following code into the <head> section of your site's HTML. +{% highlight html %} + +{% endhighlight %} +

    Immediately after release, it takes a bit of time for BootstrapCDN to catch up and get the newest version live on their CDN.

    +
  2. +
  3. + Pat yourself on the back for your scalable-vector-icons-on-the-website + judo solution in a single line of code. +
  4. +
  5. + Check out the examples to start using Font Awesome! +
  6. +
+
+ +
+ +

Use this method to get the default Font Awesome CSS with the default Bootstrap 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. +
+
+ +
+ +

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

+ Use the Official Font Awesome SASS Ruby Gem to easily get Font + Awesome SASS into a Rails 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. +
+
+ +
+ +

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

+ 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 + whomever decided your project needs IE7 support. +

+
+ +
+ +

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

+