{# 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 %}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%} |
| |
{%trans%}installed_extension{%endtrans%} |
| |
{%trans%}builtLanguages{%endtrans%} |
| |
{%trans%}lantana-version{%endtrans%} | WSOFT Lantana v2.12.1(tapioca) | |
{%trans%}mkdocs-version{%endtrans%} | {{ mkdocs_version }} |
{% trans %}status-disabled{%endtrans%}
{% endif %}