mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 08:08:10 -07:00
Updated to new theme of TeXt
This commit is contained in:
@@ -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 -%}
|
||||
@@ -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 -%}
|
||||
@@ -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 -%}
|
||||
@@ -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 -%}
|
||||
@@ -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 -%}
|
||||
@@ -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 -%}
|
||||
@@ -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 -%}
|
||||
@@ -0,0 +1,2 @@
|
||||
{%- include snippets/prepend-baseurl.html path=page.url -%}
|
||||
{{ __return | prepend: site.url }}
|
||||
@@ -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 -%}
|
||||
@@ -0,0 +1 @@
|
||||
{%- assign __return = include.path | prepend: '/' | prepend: include.prepend_path | replace:'///','/' | replace:'//','/' -%}
|
||||
Reference in New Issue
Block a user