fix: added _includes

This commit is contained in:
2023-06-25 18:14:18 +09:00
parent ebc9c3bc2a
commit ac692a911d
33 changed files with 1708 additions and 0 deletions

8
_includes/lang.html Normal file
View File

@@ -0,0 +1,8 @@
{% comment %}
Detect appearance language and return it through variable "lang"
{% endcomment %}
{% if site.data.locales[site.lang] %}
{% assign lang = site.lang %}
{% else %}
{% assign lang = 'en' %}
{% endif %}