chrisbobbe / jekyll-theme-prologue

A Jekyll version of the "Prologue" theme by HTML5 UP
https://chrisbobbe.github.io/jekyll-theme-prologue/
Other
429 stars 932 forks source link

Adding google scholar & research gate to social sites #62

Open sabilab opened 4 years ago

sabilab commented 4 years ago

Hi, First thanks a lot for this beautiful theme. I would like to add a link to my researchgate profile as well as my google scholar profile. How can I do this ? Could you add this to the list in _config.yml ? Thanks in advance Cordially, Jean Ollion

vineetparikh commented 4 years ago

To add additional social icons, go to social-icons.html, and inside the "icons" ul, add additional elements. For example, for a resume, do

{%- if site.resume -%}
  <li><a href="{{- site.resume -}}" class="icon fa-file"><span class="label">Resume</span></a></li>
  {%- endif -%}

Once you have that, you'd need to add the variable and corresponding link to _config.yml (e.g. have the "resume" variable equalling the link to find the resume) and then you'll be set!