rolandjesse.de/_includes/header.html
Manas abd037068d 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.
2017-06-06 08:20:39 +02:00

26 lines
793 B
HTML
Executable file

<!-- Intro Start -->
<header class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<h1 class="brand-heading">&nbsp;</h1>
<h1 class="brand-heading">&nbsp;</h1>
<span class="intro-text">{{ content }}</span>
<h5>&nbsp;</h5>
<a href="#{{ site.pages_list['About'] }}" class="page-scroll">
{% 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>
</div>
</div>
</header>
<!-- Intro End -->