hugo-theme-introduction/exampleSite
Alison Presmanes Hill 2c5cfbc4b3 Add fa icon packs (#113)
This PR adds functionality for users to specify which `icon_pack` to use (`fas` or `fab`; see: https://fontawesome.com/how-to-use/on-the-web/setup/upgrading-from-version-4) in the `config.toml` file, so that users can use the solid icons as well as the brand icons.

```
    [[params.social]]
        url   = "https://twitter.com/"
        icon  = "twitter" # icon name without the 'fa-'
        icon_pack = "fab"
    [[params.social]]
        url   = "https://facebook.com/"
        icon  = "facebook-f" # icon name without the 'fa-'
        icon_pack = "fab"
    [[params.social]]
        url   = "https://linkedin.com/"
        icon  = "linkedin-in" # icon name without the 'fa-'
        icon_pack = "fab"
    [[params.social]]
        url = "mailto:youremail@email.com"  # For a direct email link, use "mailto:test@example.org".
        icon = "paper-plane" # icon name without the 'fa-'
        icon_pack = "fas"
```
2018-12-14 09:32:50 +01:00
..
content Fix #81 2018-09-16 12:22:05 +09:00
resources/_gen Fix font path 2018-11-28 20:19:25 +01:00
static/img Fix more build problems 2018-07-22 07:11:45 +02:00
.gitattributes Hide generated files via gitattributes 2018-08-31 10:32:01 +02:00
config.toml Add fa icon packs (#113) 2018-12-14 09:32:50 +01:00