diff --git a/src/_includes/get-started.html b/src/_includes/get-started.html index 068bbcf1a..c74c12036 100644 --- a/src/_includes/get-started.html +++ b/src/_includes/get-started.html @@ -2,28 +2,24 @@
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! + Bootstrap 3!
{% endcapture %} {% include stripe-ad.html %}Add Font Awesome + Bootstrap into your website with two lines of code. You don't even have to download or install anything!
+Add Font Awesome into your website with a single line of code. You don't even have to download or install anything!
<head>
section of your site's HTML.
{% highlight html %}
-
{% endhighlight %}
- Use this method to get the default Font Awesome CSS with the default Bootstrap CSS.
font-awesome
directory into your project.font-awesome
directory into your project.<head>
of your html, reference the location to your font-awesome.min.css.
{% highlight html %}
-
{% endhighlight %}
Use this method to customize Font Awesome and Bootstrap {{ site.bootstrap.version }} using LESS.
++ Use the Official Font Awesome Ruby Gem to easily get Font + Awesome into a Rails project. Generously maintained by @supercodepoet. +
font-awesome
directory into your project.@FontAwesomePath
variable to point to your font directory.
-{% highlight html %}
-@FontAwesomePath: "../font";
+ And then execute:
+{% highlight bash %}
+$ bundle
+{% endhighlight %}
+ The font path is relative from your compiled CSS directory.
Font Awesome works just as well without Bootstrap.
+Use this method to customize Font Awesome {{ site.bootstrap.version }} using LESS or SCSS.
font-awesome
directory into your project.font-awesome/
directory into your project.@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.
+Font Awesome supports IE7. If you need it, you have my condolences.
-<head>
of your html, reference the location to your font-awesome-ie7.min.css.
-{% highlight html %}
-
-
-
-{% endhighlight %}
- + 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. +