Add an option to connect main pic to social profile image from facebook,

github or gravatar.

In reference to issue #206, implement an option to connect main pic to
facebook, github or gravatar profile image.
This commit is contained in:
Manas 2017-02-11 00:09:14 +05:30 committed by Marcus Eisele
parent 4cc543b527
commit abd037068d
4 changed files with 51 additions and 1 deletions

View file

@ -11,7 +11,11 @@
<span class="intro-text">{{ content }}</span>
<h5>&nbsp;</h5>
<a href="#{{ site.pages_list['About'] }}" class="page-scroll">
<img class="img-me" src="{{site.baseurl}}{{ site.me-img }}" alt="">
{% if site.me-img contains "https://" %}
<img class="img-me" src="{{ site.me-img }}" alt="">
{% else %}
<img class="img-me" src="{{site.baseurl}}{{ site.me-img }}" alt="">
{% endif %}
</a>
</div>
</div>