jekyll-theme-prologue icon indicating copy to clipboard operation
jekyll-theme-prologue copied to clipboard

Adding google scholar & research gate to social sites

Open sabilab opened this issue 4 years ago • 1 comments

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

sabilab avatar Mar 13 '20 22:03 sabilab

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!

vineetparikh avatar Jun 18 '20 01:06 vineetparikh