{% set pageTitle = page.title || config.subtitle || '' %} {% if is_archive() %} {% set pageTitle = 'Archives' %} {% endif %} {% if is_tag() %} {% set pageTitle = 'Tag: ' + page.tag %} {% endif %} {% if is_category() %} {% set pageTitle = 'Category: ' + page.category %} {% endif %} {% if is_month() %} {% set pageTitle = pageTitle + ': ' + page.month + '/' + page.year %} {% endif %} {% if is_year() %} {% set pageTitle = pageTitle + ': ' + page.year %} {% endif %} {% if pageTitle == '' %} {% set pageTitle = config.title %} {% endif %} {{ pageTitle }} {% if theme.stylesheets !== undefined && theme.stylesheets.length > 0 %} {# stylesheet list from _config.yml #} {% for url in theme.stylesheets %} {% endfor %} {% endif %} {% if site.data.theme.site_rss %} {% if site.data.theme.site_rss.rss %} {% endif %} {% if site.data.theme.site_rss.atom %} {% endif %} {% endif %} {% block add_head %}{% endblock %}
{% block body %}{% endblock %}
{% if theme.scripts !== undefined && theme.scripts.length > 0 %} {# scripts list from config.yml #} {% for url in theme.scripts %} {% endfor %} {% endif %} {% block add_scripts %}{% endblock %}