{% unless site.settings.sidebar.hide or page.sidebar.hide %}
{% capture about_content %} {% assign project_desc = site.settings.project.description %} {% unless project_desc %} {% if site.github %} {% assign project_desc = site.github.project_tagline %} {% endif %} {% endunless %} {% if project_desc %} {% capture project_desc %}{{ project_desc }}. {% endcapture %} {% endif %} {% capture project_desc %}{{ project_desc }}Feel free to contribute or contact me.{% endcapture %}

{{ project_desc }}

{% if site.github %} {% assign github_link = site.settings.navbar.github.link | default: 'GitHub' %} {% assign github_icon = site.settings.navbar.github.icon | default: 'globe' %} {% capture github_icon %} {% endcapture %} {{ github_icon }}{{ github_link }} {% endif %} {% assign author_email = site.settings.author.email | default: 'John.Doe@example.com' %}  {{ author_email }}
{% endcapture %} {% include common/sidebar_entry.html header='About' content=about_content %} {% if site.posts.size > 0 %} {% capture latest_posts_content %}
{% for post in site.posts limit: 5 %}  {{ post.date | date: '%-d %b %Y' }}  {{ post.title }} {% endfor %}
{% endcapture %} {% include common/sidebar_entry.html header='Latest posts' content=latest_posts_content %} {% endif %}
{% endunless %}