Skip to content

Commit

Permalink
Upgrade fontawesome. Add email protection.
Browse files Browse the repository at this point in the history
  • Loading branch information
alshedivat committed Apr 9, 2018
1 parent e1eb426 commit eef5f78
Show file tree
Hide file tree
Showing 32 changed files with 3,108 additions and 758 deletions.
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -2,6 +2,7 @@ source 'https://rubygems.org'
group :jekyll_plugins do group :jekyll_plugins do
gem 'github-pages' gem 'github-pages'
gem 'jekyll' gem 'jekyll'
gem 'jekyll-email-protect'
gem 'jekyll-paginate' gem 'jekyll-paginate'
gem 'jekyll-scholar' gem 'jekyll-scholar'
gem 'jemoji' gem 'jemoji'
Expand Down
3 changes: 2 additions & 1 deletion _config.yml
Expand Up @@ -78,6 +78,7 @@ include: ['_pages']


# Gems # Gems
gems: gems:
- jekyll-email-protect
- jekyll-paginate - jekyll-paginate
- jekyll/scholar - jekyll/scholar
- jemoji - jemoji
Expand Down Expand Up @@ -110,5 +111,5 @@ scholar:
# Other settings # Other settings
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
jquery_version: "1.12.4" jquery_version: "1.12.4"
katex_version: "0.7.1" katex_version: "0.9.0"
anchorjs_version: "3.2.2" anchorjs_version: "3.2.2"
2 changes: 1 addition & 1 deletion _includes/hemline.html
Expand Up @@ -21,7 +21,7 @@
{% endif %} {% endif %}


<!-- Include custom icon fonts --> <!-- Include custom icon fonts -->
<link rel="stylesheet" href="{{ '/assets/css/font-awesome.min.css' | prepend: site.baseurl | prepend: site.url }}"> <link rel="stylesheet" href="{{ '/assets/css/fontawesome-all.min.css' | prepend: site.baseurl | prepend: site.url }}">
<link rel="stylesheet" href="{{ '/assets/css/academicons.min.css' | prepend: site.baseurl | prepend: site.url }}"> <link rel="stylesheet" href="{{ '/assets/css/academicons.min.css' | prepend: site.baseurl | prepend: site.url }}">


<!-- Google Analytics --> <!-- Google Analytics -->
Expand Down
11 changes: 6 additions & 5 deletions _includes/social.html
@@ -1,10 +1,11 @@
<div class="social"> <div class="social">
<span class="contacticon center"> <span class="contacticon center">
<a href="mailto:{{ site.email }}"><i class="fa fa-envelope-square"></i></a> <a href="mailto:{{ site.email | encode_email }}"><i class="fas fa-envelope"></i></a>
<a href="https://scholar.google.com/citations?authorid={{ site.scholar_authorid }}" target="_blank" title="Google Scholar"><i class="ai ai-google-scholar-square"></i></a> <a href="https://scholar.google.com/citations?user={{ site.scholar_userid }}" target="_blank" title="Google Scholar"><i class="ai ai-google-scholar"></i></a>
<a href="https://github.com/{{ site.github_username }}" target="_blank" title="GitHub"><i class="fa fa-github-square"></i></a> <a href="https://github.com/{{ site.github_username }}" target="_blank" title="GitHub"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/{{ site.linkedin_username }}" target="_blank" title="LinkedIn"><i class="fa fa-linkedin-square"></i></a> <a href="https://www.linkedin.com/in/{{ site.linkedin_username }}" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/{{ site.twitter_username }}" target="_blank" title="Twitter"><i class="fa fa-twitter-square"></i></a> <a href="https://twitter.com/{{ site.twitter_username }}" target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://www.strava.com/athletes/{{ site.strava_userid }}" target="_blank" title="Strava"><i class="fab fa-strava"></i></a>
</span> </span>


<div class="col three caption"> <div class="col three caption">
Expand Down
2 changes: 1 addition & 1 deletion assets/css/academicons.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions assets/css/font-awesome.min.css

This file was deleted.

5 changes: 5 additions & 0 deletions assets/css/fontawesome-all.min.css

Large diffs are not rendered by default.

Binary file removed assets/fonts/FontAwesome.otf
Binary file not shown.
Binary file modified assets/fonts/academicons.eot
Binary file not shown.

0 comments on commit eef5f78

Please sign in to comment.