Add fa-bitbucket to get_site_icon

Closes #6
This commit is contained in:
Paul Woolcock 2018-02-12 15:38:33 -05:00
parent 3ca1c7b238
commit ca4cd5273d

View file

@ -88,6 +88,7 @@ fn get_site_icon(repo_site: &RepoSite) -> &'static str {
match *repo_site { match *repo_site {
RepoSite::Github => "fa-github", RepoSite::Github => "fa-github",
RepoSite::Gitlab => "fa-gitlab", RepoSite::Gitlab => "fa-gitlab",
RepoSite::Bitbucket => "fa-bitbucket",
} }
} }