jekyll-theme-centos 2.52.0.beta.11 → 2.52.0.beta.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_config.yml +11 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2770dc34f440c7ec17c890cdce467a18875c26dcfb2ebc468b819b20ea97c027
|
|
4
|
+
data.tar.gz: 50b544b9b5d60d38b3ad79c2f869fd28460198daa210d52129dbb0f70125cc70
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 729568d3c750913e588722942033e380b63d80c2b2a6779466ad8ba2ec4b88bb7ca36f7e49e1f3ae9baa32592fb7a45fc7447b78f7e53795fa3c578dfc9b04f1
|
|
7
|
+
data.tar.gz: a42aa83c4e352b60aaa2e5f70ed7f84da098c0980f535577ea4a66358cd0d9162d6045d5032ba55fcf8cadcb20f0d36d0469828e8a32bf1f0de727c5e9e56799
|
data/_config.yml
CHANGED
|
@@ -50,8 +50,16 @@ theme: "jekyll-theme-centos"
|
|
|
50
50
|
|
|
51
51
|
# site.defaults - Set global default values.
|
|
52
52
|
defaults:
|
|
53
|
+
# Asset files - prevent from being treated as pages and localized
|
|
53
54
|
- scope:
|
|
54
|
-
path: ""
|
|
55
|
+
path: "assets"
|
|
56
|
+
values:
|
|
57
|
+
output: false
|
|
58
|
+
with_locales: false # Explicitly disable localization for assets
|
|
59
|
+
# Apply localization ONLY to markdown/content files in root and subdirectories
|
|
60
|
+
# (NOT to theme assets, vendor files, or other static files)
|
|
61
|
+
- scope:
|
|
62
|
+
type: "pages"
|
|
55
63
|
values:
|
|
56
64
|
layout: "base/default"
|
|
57
65
|
# ----------------------------------------------------------------
|
|
@@ -77,7 +85,7 @@ defaults:
|
|
|
77
85
|
with_artwork: false
|
|
78
86
|
with_content: true
|
|
79
87
|
with_link: true
|
|
80
|
-
with_locales: false
|
|
88
|
+
with_locales: false # Site localization (through jekyll-l10n plugin)
|
|
81
89
|
with_locales_data:
|
|
82
90
|
locales: ["es", "fr", "it", "pt", "de"]
|
|
83
91
|
locales_dir: "_locales"
|
|
@@ -95,7 +103,7 @@ defaults:
|
|
|
95
103
|
translation:
|
|
96
104
|
fallback: "english"
|
|
97
105
|
preserve_html: true
|
|
98
|
-
libretranslate_enabled: false # Explicit
|
|
106
|
+
libretranslate_enabled: false # Explicit disabled for production
|
|
99
107
|
libretranslate_api_url: "http://localhost:5000"
|
|
100
108
|
libretranslate_api_key: nil
|
|
101
109
|
libretranslate_timeout: 300
|