mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-07 16:17:50 +00:00
9 lines
218 B
HTML
9 lines
218 B
HTML
{% 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 %}
|