{% macro head(config, page, section, current_url) %} {# current_url이 정의되어 있지 않으면 기본값으로 설정 #} {% if current_url is not defined or current_url == "" %} {% set current_url = config.base_url %} {% endif %} {% if page %} {% if page.description %} {% elif config.description %} {% endif %} {% elif config.description %} {% endif %} {%- if page and page.title -%} {{ page.title }} | {{ config.title | default(value="NekoBox") }} {%- elif section and section.title -%} {{ section.title }} | {{ config.title | default(value="NekoBox") }} {%- elif config.title -%} {{ config.title }} {%- else -%} NekoBox {%- endif -%} {# Google Analytics gtag.js integration #} {% if config.extra.gtag and config.extra.gtag != "" %} {% endif %} {% if page.extra.thumbnail %} {% elif config.extra.default_thumbnail %} {% endif %} {% if config.extra.twitter_site %} {% endif %} {% if config.extra.twitter_creator %} {% endif %} {% if page.extra.thumbnail %} {% elif config.extra.default_thumbnail %} {% endif %} {% endmacro head %}