hexo-theme-icarus/source/_posts/widget/Profile.md

2.7 KiB

title: Profile Sidebar Widget date: 2018-02-02 categories:

  • Widgets tags:
  • Getting Started thumbnail: /gallery/deer.jpg widgets:

      type: profile
      position: right
      author: hulatocat
      author_title: A GitHub Octocat
      location: GitHub Inc.
      avatar: https://octodex.github.com/images/hula_loop_octodex03.gif
      gravatar: 
      follow_link: https://octodex.github.com/hulatocat
      social_links:
          Github:
              icon: fab fa-github
              url: 'http://github.com/'
          Icarus:
              icon: fas fa-palette
              url: 'http://github.com/ppoffice/hexo-theme-icarus'
    

Icarus offers a way to showcase yourself using the profile sidebar widget. To use this widget, add the following lines to the widgets section of your _config.yml:

{% codeblock lang:yaml _config.yml %} - type: profile position: # show in left or right sidebar author: # your name author_title: # your title location: # where are you avatar: # path or url to your avatar image gravatar: # your gravatar email follow_link: # path or url to any page you want social_links: # add links to your social network here {% endcodeblock %}

There are two things that you should note:

  • If you want to Gravatar, fill in your email in the gravatar field. Otherwise, leave it blank in case it overrides the avatar setting.

  • The social_links field accepts an array of links which are either shown as a text link or icon link. The details are described in {% post_link theme/Polymorphic-Link-Settings %}.

Joey Pilgrim