Updated to new theme of TeXt

This commit is contained in:
2021-10-25 11:59:10 -04:00
parent 47c2c2e8a1
commit 296d628d8b
318 changed files with 21116 additions and 6966 deletions
+9
View File
@@ -0,0 +1,9 @@
{%- if include.source1 == nil -%}
{%- if include.source0 == nil -%}
{%- assign __return = include.target -%}
{%- else -%}
{%- assign __return = include.source0 -%}
{%- endif -%}
{%- else -%}
{%- assign __return = include.source1 -%}
{%- endif -%}
+11
View File
@@ -0,0 +1,11 @@
{%- assign _title = include.article.title | default: layout.title -%}
{%- assign _titles = include.article.titles | default: layout.titles -%}
{%- if _title -%}
{%- assign __return = _title -%}
{%- elsif _titles -%}
{%- include snippets/get-string-from-locale-config.html locale=_titles -%}
{%- assign __return = __return -%}
{%- else -%}
{%- assign __return = nil -%}
{%- endif -%}
+6
View File
@@ -0,0 +1,6 @@
{%- assign __return = site.data.variables.default.lang -%}
{%- if page.lang -%}
{%- assign __return = page.lang -%}
{%- elsif site.lang -%}
{%- assign __return = site.lang -%}
{%- endif -%}
+12
View File
@@ -0,0 +1,12 @@
{%- include snippets/get-lang.html -%}
{%- assign _lang = __return -%}
{%- assign _local_lang = site.data.locale[_lang] -%}
{%- assign _local_lang_en = site.data.locale.en -%}
{%- if _local_lang == nil -%}
{%- assign _local_lang = _local_lang_en -%}
{%- endif -%}
{%- if _local_lang[include.key] -%}
{%- assign __return = _local_lang[include.key] -%}
{%- else -%}
{%- assign __return = _local_lang_en[include.key] -%}
{%- endif -%}
+8
View File
@@ -0,0 +1,8 @@
{%- assign _pre7 = include.path | slice: 0, 7 -%}
{%- assign _pre8 = include.path | slice: 0, 8 -%}
{%- if _pre7 == 'http://' or _pre8 == 'https://' -%}
{%- assign __return = include.path -%}
{%- else -%}
{%- include snippets/prepend-baseurl.html path=include.path -%}
{%- assign __return = __return -%}
{%- endif -%}
+2
View File
@@ -0,0 +1,2 @@
{%- assign _sources = site.sources | default: site.data.variables.default.sources -%}
{%- assign __return = site.data.variables.sources[_sources] -%}
@@ -0,0 +1,7 @@
{%- include snippets/get-lang.html -%}
{%- assign _lang = __return -%}
{%- if include.locale[_lang] -%}
{%- assign __return = include.locale[_lang] -%}
{%- else -%}
{%- assign __return = include.locale.en -%}
{%- endif -%}
+6
View File
@@ -0,0 +1,6 @@
{%- assign _page_path_first_char = include.page.path | slice: 0, 1 -%}
{%- if _page_path_first_char == '_' -%}
{%- assign __return = true -%}
{%- else -%}
{%- assign __return = false -%}
{%- endif -%}
+2
View File
@@ -0,0 +1,2 @@
{%- include snippets/prepend-baseurl.html path=page.url -%}
{{ __return | prepend: site.url }}
+4
View File
@@ -0,0 +1,4 @@
{%- assign _include_path_replace_index = include.path | replace: 'index.html', '' -%}
{%- include snippets/prepend-path.html
path=_include_path_replace_index
prepend_path=site.baseurl -%}
+1
View File
@@ -0,0 +1 @@
{%- assign __return = include.path | prepend: '/' | prepend: include.prepend_path | replace:'///','/' | replace:'//','/' -%}