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