{% if site.logo %}
{% include {{site.logo}} %}
{% else %}

{{ site.title }}

{% endif %}

{{ site.description }}

Home {% comment %} The code below dynamically generates a sidebar nav of pages with `layout: page` in the front-matter. See readme for usage. {% endcomment %} {% assign pages_list = site.pages %} {% for node in pages_list %} {% if node.title != null %} {% if node.layout == "page" %} {{ node.title }} {% endif %} {% endif %} {% endfor %} Blog Download GitHub project Currently v{{ site.version }} {% assign author = site.data.authors.first[1] %} {% if author.social %}
{% include social.html social=author.social %}
{% endif %}

© {{ site.time | date: '%Y' }}. All rights reserved.