hyde icon indicating copy to clipboard operation
hyde copied to clipboard

add avatar like image to sidebar

Open camrinbraun opened this issue 6 years ago • 2 comments

Is it possible to add an avatar-like icon or image to the sidebar above the site title? For example, the header image shown here: https://deanattali.com/beautiful-jekyll/. Thanks!

camrinbraun avatar Nov 01 '18 03:11 camrinbraun

Hi, I went to sidebar.html and added: <img src="{{ site.baseurl }}public/profile_picture.jpg" alt="hi" class="inline"/> above the tag with the site title. ...add your picture to the public folder. :)

dmitry-vereykin avatar Dec 01 '18 06:12 dmitry-vereykin

First, Your avatar(or icon) will be placed in public or assets directory. Second, in _includes/sidebar.html At the top of source code..

<div class="sidebar-about">
      <h1>
        <a href="{{ site.baseurl }}">
          {{ site.title }}
        </a>
      </h1>
      <img src='{{"/public/icon.jpg" | absolute_url}}'> <!-- **Tag Insertion, like this**-->
      <p class="lead">{{ site.description }}</p>
    </div>

eisen1990 avatar Jan 02 '19 13:01 eisen1990