{# useコーナー #} {# i18nの機能を使えるようにする 使用可否は if i18n_enable で取得する #} {% if "i18n" in config.plugins %} {% set i18n_enabled = true %} {% set i18n_build_languages = config.plugins["i18n"].build_languages %} {% set i18n_alternates = config.plugins["i18n"].i18n_files_per_language %} {% else %} {% set i18n_enabled = false %} {% set i18n_build_languages = {} %} {% set i18n_alternates = {} %} {% endif %} {% extends "base.html" %} {% block main_content %} {% set ns = namespace(cnt = 1) %} {% for pg in pages %} {% set ns.cnt = ns.cnt + 1 %} {% endfor %}

{% trans %}about-this-site{% endtrans %}

{% if config.theme.status %} {% if config.author %} {% endif %} {% if config.repo_url %} {% endif %} {% if i18n_enabled %} {% endif %}
{% trans %}statics-about-site{% endtrans %}
{% trans %}site-name{% endtrans %} {{ config.site_name }}
{% trans %}total-num-articles{% endtrans %} {{ ns.cnt }}
{%trans%}build-date-utc{%endtrans%} {{ build_date_utc }}
{%trans%}siteAuthor{%endtrans%} {{ config.author }}
{% trans %}statics_repo{% endtrans %} {% if config.repo_name %}{{ config.repo_name }}{% else %}{{ config.repo_url }}{% endif %}
{%trans%}installed_plugin{%endtrans%}
    {% for plugin in config.plugins %}
  • {{ plugin }}
  • {% endfor %}
{%trans%}installed_extension{%endtrans%}
    {% for extension in config.markdown_extensions %}
  • {{ extension }}
  • {% endfor %}
{%trans%}builtLanguages{%endtrans%}
    {% for lang in i18n_build_languages %}
  • {{lang}}
  • {% endfor %}
{%trans%}lantana-version{%endtrans%} WSOFT Lantana v2.12.0(tapioca)
{%trans%}mkdocs-version{%endtrans%} {{ mkdocs_version }}
{% else %}

{% trans %}status-disabled{%endtrans%}

{% endif %}
{% endblock %}