initial migration
This commit is contained in:
167
data/export-summary.md
Normal file
167
data/export-summary.md
Normal file
@@ -0,0 +1,167 @@
|
||||
# WordPress → Next.js Export Summary
|
||||
|
||||
## Export Overview
|
||||
**Date:** 2025-12-27
|
||||
**Target Site:** https://klz-cables.com
|
||||
**Export Timestamp:** 2025-12-27T21-26-12-521Z
|
||||
|
||||
## Data Collected
|
||||
|
||||
### Content Summary
|
||||
| Type | English | German | Total |
|
||||
|------|---------|--------|-------|
|
||||
| **Pages** | 9 | 9 | 18 |
|
||||
| **Posts** | 29 | 30 | 59 |
|
||||
| **Products** | 25 | 25 | 50 |
|
||||
| **Categories** | 7 | 7 | 14 |
|
||||
| **Menus** | 5 | 5 | 10 |
|
||||
| **Media Files** | 50 | - | 50 |
|
||||
| **Redirects** | 59 | - | 59 |
|
||||
|
||||
### File Structure
|
||||
```
|
||||
data/raw/2025-12-27T21-26-12-521Z/
|
||||
├── site-info.json (0.4 KB)
|
||||
├── translation-mapping.json (0.6 KB)
|
||||
├── pages.en.json (220.5 KB)
|
||||
├── pages.de.json (231.3 KB)
|
||||
├── posts.en.json (1,117.0 KB)
|
||||
├── posts.de.json (1,163.5 KB)
|
||||
├── products.en.json (349.2 KB)
|
||||
├── products.de.json (350.2 KB)
|
||||
├── product-categories.en.json (1.7 KB)
|
||||
├── product-categories.de.json (1.7 KB)
|
||||
├── menus.en.json (2.6 KB)
|
||||
├── menus.de.json (2.6 KB)
|
||||
├── redirects.json (13.3 KB)
|
||||
└── media.json (13.2 KB)
|
||||
```
|
||||
|
||||
## Site Information
|
||||
- **Site Title:** KLZ Cables
|
||||
- **Description:** Empowering a sustainable future through innovative and reliable energy solutions.
|
||||
- **Default Language:** English
|
||||
- **Languages:** English, German
|
||||
- **Polylang Detected:** ❌ No (API limitation)
|
||||
- **Permalink Structure:** /%postname%/
|
||||
|
||||
## Key Findings
|
||||
|
||||
### ✅ Successes
|
||||
1. **Complete Content Export:** All pages, posts, products, and categories successfully exported for both languages
|
||||
2. **Media Download:** 50 media files downloaded to `/public/media/`
|
||||
3. **Redirect Generation:** 59 redirect rules created (29 EN + 30 DE)
|
||||
4. **Data Structure:** All files properly formatted with consistent schema
|
||||
|
||||
### ⚠️ Issues & Limitations
|
||||
|
||||
#### 1. Translation Mapping
|
||||
- **Posts:** 0 translation pairs found
|
||||
- **Products:** 7 translation pairs found
|
||||
- **Pages:** 2 translation pairs found
|
||||
- **Categories:** 0 translation pairs found
|
||||
|
||||
**Root Cause:** Posts have completely different slugs between languages:
|
||||
- EN: `focus-on-wind-farm-construction-three-typical-cable-challenges`
|
||||
- DE: `windparkbau-im-fokus-drei-typische-kabelherausforderungen`
|
||||
|
||||
#### 2. Polylang Detection
|
||||
- API shows `polylang: false` in site-info
|
||||
- This may be due to API permissions or Polylang not exposing translation data via REST
|
||||
|
||||
#### 3. Content Differences
|
||||
- **Posts:** 1 extra German post (30 vs 29)
|
||||
- **Pages:** Equal count (9 each)
|
||||
- **Products:** Equal count (25 each)
|
||||
|
||||
## Data Quality Assessment
|
||||
|
||||
### Content Integrity
|
||||
- ✅ All required content types present
|
||||
- ✅ Both languages represented
|
||||
- ✅ HTML content preserved (including WPBakery shortcodes)
|
||||
- ✅ Metadata intact (dates, authors, categories)
|
||||
|
||||
### Media Handling
|
||||
- ✅ 50/50 files downloaded successfully
|
||||
- ✅ Files properly named with IDs
|
||||
- ✅ Manifest created with metadata
|
||||
|
||||
### Routing & Redirects
|
||||
- ✅ 59 redirect rules generated
|
||||
- ✅ Both languages handled
|
||||
- ✅ Post slug → /blog/ prefix applied
|
||||
|
||||
## Next Steps for Implementation
|
||||
|
||||
### 1. Translation Mapping (Manual Review Required)
|
||||
Since automatic mapping failed, you need to:
|
||||
|
||||
**Option A: Manual Mapping**
|
||||
Create a manual translation mapping based on content similarity:
|
||||
```json
|
||||
{
|
||||
"posts": {
|
||||
"wind-farm-construction": {
|
||||
"en": 123,
|
||||
"de": 456
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
**Option B: Content-based Matching**
|
||||
Use post titles or content hashes to find matching pairs programmatically.
|
||||
|
||||
### 2. Polylang Integration
|
||||
- Verify Polylang is active on the WordPress site
|
||||
- Check if REST API endpoints support `?lang=en` and `?lang=de` parameters
|
||||
- Consider using WP-CLI for direct database access to translation data
|
||||
|
||||
### 3. Data Processing Pipeline
|
||||
The export provides raw data that needs processing:
|
||||
1. **HTML Sanitization:** Remove WPBakery shortcodes, normalize classes
|
||||
2. **Asset Mapping:** Update image URLs to local paths
|
||||
3. **Translation Keys:** Generate stable keys for i18n
|
||||
4. **Route Generation:** Create Next.js routes with locale prefixes
|
||||
|
||||
### 4. Missing Data to Address
|
||||
- **Menu Structure:** Menus exported but items not fully populated
|
||||
- **Translation Relationships:** Need manual or enhanced mapping
|
||||
- **Polylang Metadata:** Language-specific settings and relationships
|
||||
|
||||
## File Locations
|
||||
|
||||
### Export Data
|
||||
- **Main Export:** `data/raw/2025-12-27T21-26-12-521Z/`
|
||||
- **Media Files:** `public/media/`
|
||||
|
||||
### Scripts
|
||||
- **Export Script:** `scripts/wordpress-export.js`
|
||||
- **Analysis Script:** `scripts/analyze-export.js`
|
||||
|
||||
## Recommendations
|
||||
|
||||
### Immediate Actions
|
||||
1. ✅ **Verify Export:** Review sample data for accuracy
|
||||
2. ⚠️ **Fix Translation Mapping:** Create manual mapping or enhance script
|
||||
3. ✅ **Check Media:** Verify all images downloaded correctly
|
||||
4. ⚠️ **Polylang Verification:** Confirm Polylang configuration
|
||||
|
||||
### For Next.js Migration
|
||||
1. **Data Processing:** Create pipeline to sanitize and transform data
|
||||
2. **Route Structure:** Implement i18n routing with `/de/` prefix
|
||||
3. **Content Rendering:** Handle WPBakery HTML compatibility
|
||||
4. **SEO Setup:** Generate hreflang tags from translation data
|
||||
|
||||
### WordPress Site Verification
|
||||
1. Confirm Polylang is active and configured
|
||||
2. Check REST API permissions for translation data
|
||||
3. Verify all content is published (not draft)
|
||||
4. Test media file accessibility
|
||||
|
||||
## Conclusion
|
||||
|
||||
The export successfully gathered **all required content** for the static Next.js migration. The main limitation is the **translation mapping** due to different slugs between languages, which is common in multilingual WordPress setups. This can be resolved through manual mapping or enhanced content analysis.
|
||||
|
||||
The data is ready for the Next.js processing pipeline, with 50 media files and complete content for both English and German locales.
|
||||
52
data/processed/asset-map.json
Normal file
52
data/processed/asset-map.json
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T193520.620.webp": "/media/46113-image_fx_-2025-02-20T193520.620.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/10/1759325528650.webp": "/media/47294-1759325528650.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-22T132138.470.webp": "/media/46237-image_fx_-2025-02-22T132138.470.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp": "/media/47052-NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T185502.688.webp": "/media/46055-image_fx_-2025-02-20T185502.688.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T191245.537.webp": "/media/46094-image_fx_-2025-02-20T191245.537.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-9.webp": "/media/45685-image_fx_-9.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/04/inter-solar.webp": "/media/46380-inter-solar.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-2.webp": "/media/45692-image_fx_-2.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/03/closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp": "/media/45979-closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-6.webp": "/media/45688-image_fx_-6.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-7.webp": "/media/45687-image_fx_-7.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2024/12/Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp": "/media/10797-Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/02/5.webp": "/media/45524-5.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2024/11/medium-voltage-category.webp": "/media/6517-medium-voltage-category.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/02/1.webp": "/media/45528-1.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp": "/media/27158-power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp": "/media/20928-offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp": "/media/15376-technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp": "/media/11248-business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2024/11/1234adws21312-scaled.jpg": "/media/6126-1234adws21312-scaled.jpg",
|
||||
"https://klz-cables.com/wp-content/uploads/2024/11/aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg": "/media/6137-aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg",
|
||||
"https://klz-cables.com/wp-content/uploads/2024/12/mockup_03-copy-scaled.webp": "/media/10801-mockup_03-copy-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/klz-directory-2-scaled.webp": "/media/10863-klz-directory-2-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2024/11/low-voltage-category.webp": "/media/6521-low-voltage-category.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2024/12/green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp": "/media/10816-green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2024/12/production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp": "/media/10667-production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2024/12/large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp": "/media/10679-large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp": "/media/10988-transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/06/NA2XSFL2Y-3-scaled.webp": "/media/media-1766870855811-NA2XSFL2Y-3-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/06/N2XSFL2Y-3-scaled.webp": "/media/media-1766870855811-N2XSFL2Y-3-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/06/H1Z2Z2-K-scaled.webp": "/media/media-1766870855812-H1Z2Z2-K-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NA2XSFL2Y-3-scaled.webp": "/media/media-1766870855813-NA2XSFL2Y-3-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NA2XSF2Y-3-scaled.webp": "/media/media-1766870855813-NA2XSF2Y-3-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NA2XS2Y-scaled.webp": "/media/media-1766870855814-NA2XS2Y-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NA2XSY-scaled.webp": "/media/media-1766870855814-NA2XSY-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/N2XSFL2Y-2-scaled.webp": "/media/media-1766870855815-N2XSFL2Y-2-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/N2XSF2Y-3-scaled.webp": "/media/media-1766870855815-N2XSF2Y-3-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/N2XS2Y-scaled.webp": "/media/media-1766870855816-N2XS2Y-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/N2XSY-scaled.webp": "/media/media-1766870855817-N2XSY-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NA2X2Y-scaled.webp": "/media/media-1766870855817-NA2X2Y-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NA2XY-scaled.webp": "/media/media-1766870855818-NA2XY-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/N2X2Y-scaled.webp": "/media/media-1766870855818-N2X2Y-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/N2XY-scaled.webp": "/media/media-1766870855820-N2XY-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NAY2Y-scaled.webp": "/media/media-1766870855821-NAY2Y-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NAYCWY-scaled.webp": "/media/media-1766870855821-NAYCWY-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NAYY-scaled.webp": "/media/media-1766870855822-NAYY-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NY2Y-scaled.webp": "/media/media-1766870855822-NY2Y-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NYCWY-scaled.webp": "/media/media-1766870855823-NYCWY-scaled.webp",
|
||||
"https://klz-cables.com/wp-content/uploads/2025/01/NYY-scaled.webp": "/media/media-1766870855823-NYY-scaled.webp"
|
||||
}
|
||||
156
data/processed/categories.json
Normal file
156
data/processed/categories.json
Normal file
@@ -0,0 +1,156 @@
|
||||
[
|
||||
{
|
||||
"id": 44,
|
||||
"translationKey": "equipment",
|
||||
"locale": "en",
|
||||
"slug": "equipment",
|
||||
"name": "Equipment",
|
||||
"path": "/product-category/equipment",
|
||||
"description": "",
|
||||
"count": 0,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"translationKey": "high-voltage-cables",
|
||||
"locale": "en",
|
||||
"slug": "high-voltage-cables",
|
||||
"name": "High Voltage Cables",
|
||||
"path": "/product-category/high-voltage-cables",
|
||||
"description": "",
|
||||
"count": 2,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"translationKey": "low-voltage-cables",
|
||||
"locale": "en",
|
||||
"slug": "low-voltage-cables",
|
||||
"name": "Low Voltage Cables",
|
||||
"path": "/product-category/low-voltage-cables",
|
||||
"description": "",
|
||||
"count": 10,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"translationKey": "medium-voltage-cables",
|
||||
"locale": "en",
|
||||
"slug": "medium-voltage-cables",
|
||||
"name": "Medium Voltage Cables",
|
||||
"path": "/product-category/medium-voltage-cables",
|
||||
"description": "",
|
||||
"count": 8,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"translationKey": "power-cables",
|
||||
"locale": "en",
|
||||
"slug": "power-cables",
|
||||
"name": "Power Cables",
|
||||
"path": "/product-category/power-cables",
|
||||
"description": "",
|
||||
"count": 20,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"translationKey": "solar-cables",
|
||||
"locale": "en",
|
||||
"slug": "solar-cables",
|
||||
"name": "Solar Cables",
|
||||
"path": "/product-category/solar-cables",
|
||||
"description": "",
|
||||
"count": 1,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"translationKey": "uncategorized",
|
||||
"locale": "en",
|
||||
"slug": "uncategorized",
|
||||
"name": "Uncategorized",
|
||||
"path": "/product-category/uncategorized",
|
||||
"description": "",
|
||||
"count": 0,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 115,
|
||||
"translationKey": "ausruestung",
|
||||
"locale": "de",
|
||||
"slug": "ausruestung",
|
||||
"name": "Ausrüstung",
|
||||
"path": "/de/product-category/ausruestung",
|
||||
"description": "",
|
||||
"count": 0,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 107,
|
||||
"translationKey": "hochspannungskabel",
|
||||
"locale": "de",
|
||||
"slug": "hochspannungskabel",
|
||||
"name": "Hochspannungskabel",
|
||||
"path": "/de/product-category/hochspannungskabel",
|
||||
"description": "",
|
||||
"count": 2,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 111,
|
||||
"translationKey": "mittelspannungskabel",
|
||||
"locale": "de",
|
||||
"slug": "mittelspannungskabel",
|
||||
"name": "Mittelspannungskabel",
|
||||
"path": "/de/product-category/mittelspannungskabel",
|
||||
"description": "",
|
||||
"count": 8,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 109,
|
||||
"translationKey": "niederspannungskabel",
|
||||
"locale": "de",
|
||||
"slug": "niederspannungskabel",
|
||||
"name": "Niederspannungskabel",
|
||||
"path": "/de/product-category/niederspannungskabel",
|
||||
"description": "",
|
||||
"count": 10,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 113,
|
||||
"translationKey": "solarkabel",
|
||||
"locale": "de",
|
||||
"slug": "solarkabel",
|
||||
"name": "Solarkabel",
|
||||
"path": "/de/product-category/solarkabel",
|
||||
"description": "",
|
||||
"count": 1,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 105,
|
||||
"translationKey": "stromkabel",
|
||||
"locale": "de",
|
||||
"slug": "stromkabel",
|
||||
"name": "Stromkabel",
|
||||
"path": "/de/product-category/stromkabel",
|
||||
"description": "",
|
||||
"count": 20,
|
||||
"translation": null
|
||||
},
|
||||
{
|
||||
"id": 93,
|
||||
"translationKey": "uncategorized-de",
|
||||
"locale": "de",
|
||||
"slug": "uncategorized-de",
|
||||
"name": "Uncategorized",
|
||||
"path": "/de/product-category/uncategorized-de",
|
||||
"description": "",
|
||||
"count": 0,
|
||||
"translation": null
|
||||
}
|
||||
]
|
||||
502
data/processed/media.json
Normal file
502
data/processed/media.json
Normal file
@@ -0,0 +1,502 @@
|
||||
[
|
||||
{
|
||||
"id": 46113,
|
||||
"filename": "46113-image_fx_-2025-02-20T193520.620.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T193520.620.webp",
|
||||
"localPath": "/media/46113-image_fx_-2025-02-20T193520.620.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 47294,
|
||||
"filename": "47294-1759325528650.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/10/1759325528650.webp",
|
||||
"localPath": "/media/47294-1759325528650.webp",
|
||||
"alt": "",
|
||||
"width": 2046,
|
||||
"height": 1536,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 46237,
|
||||
"filename": "46237-image_fx_-2025-02-22T132138.470.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-22T132138.470.webp",
|
||||
"localPath": "/media/46237-image_fx_-2025-02-22T132138.470.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 47052,
|
||||
"filename": "47052-NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp",
|
||||
"localPath": "/media/47052-NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1080,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 46055,
|
||||
"filename": "46055-image_fx_-2025-02-20T185502.688.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T185502.688.webp",
|
||||
"localPath": "/media/46055-image_fx_-2025-02-20T185502.688.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 46094,
|
||||
"filename": "46094-image_fx_-2025-02-20T191245.537.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T191245.537.webp",
|
||||
"localPath": "/media/46094-image_fx_-2025-02-20T191245.537.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45685,
|
||||
"filename": "45685-image_fx_-9.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-9.webp",
|
||||
"localPath": "/media/45685-image_fx_-9.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 46380,
|
||||
"filename": "46380-inter-solar.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/04/inter-solar.webp",
|
||||
"localPath": "/media/46380-inter-solar.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1081,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45692,
|
||||
"filename": "45692-image_fx_-2.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-2.webp",
|
||||
"localPath": "/media/45692-image_fx_-2.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45979,
|
||||
"filename": "45979-closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/03/closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp",
|
||||
"localPath": "/media/45979-closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1707,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45688,
|
||||
"filename": "45688-image_fx_-6.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-6.webp",
|
||||
"localPath": "/media/45688-image_fx_-6.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45687,
|
||||
"filename": "45687-image_fx_-7.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-7.webp",
|
||||
"localPath": "/media/45687-image_fx_-7.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10797,
|
||||
"filename": "10797-Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/12/Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp",
|
||||
"localPath": "/media/10797-Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 1193,
|
||||
"height": 2560,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45524,
|
||||
"filename": "45524-5.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/5.webp",
|
||||
"localPath": "/media/45524-5.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1080,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 6517,
|
||||
"filename": "6517-medium-voltage-category.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/11/medium-voltage-category.webp",
|
||||
"localPath": "/media/6517-medium-voltage-category.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1920,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45528,
|
||||
"filename": "45528-1.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/1.webp",
|
||||
"localPath": "/media/45528-1.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1080,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 27158,
|
||||
"filename": "27158-power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp",
|
||||
"localPath": "/media/27158-power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1440,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 20928,
|
||||
"filename": "20928-offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp",
|
||||
"localPath": "/media/20928-offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1078,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 15376,
|
||||
"filename": "15376-technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp",
|
||||
"localPath": "/media/15376-technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1707,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 11248,
|
||||
"filename": "11248-business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp",
|
||||
"localPath": "/media/11248-business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1707,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 6126,
|
||||
"filename": "6126-1234adws21312-scaled.jpg",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/11/1234adws21312-scaled.jpg",
|
||||
"localPath": "/media/6126-1234adws21312-scaled.jpg",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1920,
|
||||
"mimeType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": 6137,
|
||||
"filename": "6137-aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/11/aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg",
|
||||
"localPath": "/media/6137-aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1919,
|
||||
"mimeType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": 10801,
|
||||
"filename": "10801-mockup_03-copy-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/12/mockup_03-copy-scaled.webp",
|
||||
"localPath": "/media/10801-mockup_03-copy-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1517,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10863,
|
||||
"filename": "10863-klz-directory-2-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/klz-directory-2-scaled.webp",
|
||||
"localPath": "/media/10863-klz-directory-2-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1694,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 6521,
|
||||
"filename": "6521-low-voltage-category.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/11/low-voltage-category.webp",
|
||||
"localPath": "/media/6521-low-voltage-category.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1920,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10816,
|
||||
"filename": "10816-green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/12/green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp",
|
||||
"localPath": "/media/10816-green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1457,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10667,
|
||||
"filename": "10667-production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/12/production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp",
|
||||
"localPath": "/media/10667-production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp",
|
||||
"alt": "",
|
||||
"width": 1280,
|
||||
"height": 853,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10679,
|
||||
"filename": "10679-large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/12/large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp",
|
||||
"localPath": "/media/10679-large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp",
|
||||
"alt": "",
|
||||
"width": 1280,
|
||||
"height": 854,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10988,
|
||||
"filename": "10988-transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp",
|
||||
"localPath": "/media/10988-transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1914,
|
||||
"mimeType": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855811-NA2XSFL2Y-3-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/06/NA2XSFL2Y-3-scaled.webp",
|
||||
"localPath": "/media/media-1766870855811-NA2XSFL2Y-3-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855811-N2XSFL2Y-3-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/06/N2XSFL2Y-3-scaled.webp",
|
||||
"localPath": "/media/media-1766870855811-N2XSFL2Y-3-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855812-H1Z2Z2-K-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/06/H1Z2Z2-K-scaled.webp",
|
||||
"localPath": "/media/media-1766870855812-H1Z2Z2-K-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855813-NA2XSFL2Y-3-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSFL2Y-3-scaled.webp",
|
||||
"localPath": "/media/media-1766870855813-NA2XSFL2Y-3-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855813-NA2XSF2Y-3-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSF2Y-3-scaled.webp",
|
||||
"localPath": "/media/media-1766870855813-NA2XSF2Y-3-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855814-NA2XS2Y-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XS2Y-scaled.webp",
|
||||
"localPath": "/media/media-1766870855814-NA2XS2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855814-NA2XSY-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSY-scaled.webp",
|
||||
"localPath": "/media/media-1766870855814-NA2XSY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855815-N2XSFL2Y-2-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSFL2Y-2-scaled.webp",
|
||||
"localPath": "/media/media-1766870855815-N2XSFL2Y-2-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855815-N2XSF2Y-3-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSF2Y-3-scaled.webp",
|
||||
"localPath": "/media/media-1766870855815-N2XSF2Y-3-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855816-N2XS2Y-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XS2Y-scaled.webp",
|
||||
"localPath": "/media/media-1766870855816-N2XS2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855817-N2XSY-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSY-scaled.webp",
|
||||
"localPath": "/media/media-1766870855817-N2XSY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855817-NA2X2Y-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2X2Y-scaled.webp",
|
||||
"localPath": "/media/media-1766870855817-NA2X2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855818-NA2XY-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XY-scaled.webp",
|
||||
"localPath": "/media/media-1766870855818-NA2XY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855818-N2X2Y-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2X2Y-scaled.webp",
|
||||
"localPath": "/media/media-1766870855818-N2X2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855820-N2XY-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XY-scaled.webp",
|
||||
"localPath": "/media/media-1766870855820-N2XY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855821-NAY2Y-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NAY2Y-scaled.webp",
|
||||
"localPath": "/media/media-1766870855821-NAY2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855821-NAYCWY-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NAYCWY-scaled.webp",
|
||||
"localPath": "/media/media-1766870855821-NAYCWY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855822-NAYY-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NAYY-scaled.webp",
|
||||
"localPath": "/media/media-1766870855822-NAYY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855822-NY2Y-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NY2Y-scaled.webp",
|
||||
"localPath": "/media/media-1766870855822-NY2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855823-NYCWY-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NYCWY-scaled.webp",
|
||||
"localPath": "/media/media-1766870855823-NYCWY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"filename": "media-1766870855823-NYY-scaled.webp",
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NYY-scaled.webp",
|
||||
"localPath": "/media/media-1766870855823-NYY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mimeType": null
|
||||
}
|
||||
]
|
||||
281
data/processed/pages.json
Normal file
281
data/processed/pages.json
Normal file
File diff suppressed because one or more lines are too long
911
data/processed/posts.json
Normal file
911
data/processed/posts.json
Normal file
File diff suppressed because one or more lines are too long
27006
data/processed/products.json
Normal file
27006
data/processed/products.json
Normal file
File diff suppressed because it is too large
Load Diff
29281
data/processed/wordpress-data.json
Normal file
29281
data/processed/wordpress-data.json
Normal file
File diff suppressed because one or more lines are too long
452
data/raw/2025-12-27T21-26-12-521Z/media.json
Normal file
452
data/raw/2025-12-27T21-26-12-521Z/media.json
Normal file
@@ -0,0 +1,452 @@
|
||||
[
|
||||
{
|
||||
"id": 46113,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T193520.620.webp",
|
||||
"filename": "46113-image_fx_-2025-02-20T193520.620.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 47294,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/10/1759325528650.webp",
|
||||
"filename": "47294-1759325528650.webp",
|
||||
"alt": "",
|
||||
"width": 2046,
|
||||
"height": 1536,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 46237,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-22T132138.470.webp",
|
||||
"filename": "46237-image_fx_-2025-02-22T132138.470.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 47052,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp",
|
||||
"filename": "47052-NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1080,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 46055,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T185502.688.webp",
|
||||
"filename": "46055-image_fx_-2025-02-20T185502.688.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 46094,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/04/image_fx_-2025-02-20T191245.537.webp",
|
||||
"filename": "46094-image_fx_-2025-02-20T191245.537.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45685,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-9.webp",
|
||||
"filename": "45685-image_fx_-9.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 46380,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/04/inter-solar.webp",
|
||||
"filename": "46380-inter-solar.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1081,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45692,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-2.webp",
|
||||
"filename": "45692-image_fx_-2.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45979,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/03/closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp",
|
||||
"filename": "45979-closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1707,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45688,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-6.webp",
|
||||
"filename": "45688-image_fx_-6.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45687,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/image_fx_-7.webp",
|
||||
"filename": "45687-image_fx_-7.webp",
|
||||
"alt": "",
|
||||
"width": 1408,
|
||||
"height": 768,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10797,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/12/Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp",
|
||||
"filename": "10797-Medium-Voltage-Cables-–-KLZ-Cables-12-30-2024_05_20_PM-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 1193,
|
||||
"height": 2560,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45524,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/5.webp",
|
||||
"filename": "45524-5.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1080,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 6517,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/11/medium-voltage-category.webp",
|
||||
"filename": "6517-medium-voltage-category.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1920,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 45528,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/02/1.webp",
|
||||
"filename": "45528-1.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1080,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 27158,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp",
|
||||
"filename": "27158-power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1440,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 20928,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp",
|
||||
"filename": "20928-offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1078,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 15376,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp",
|
||||
"filename": "15376-technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1707,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 11248,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp",
|
||||
"filename": "11248-business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1707,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 6126,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/11/1234adws21312-scaled.jpg",
|
||||
"filename": "6126-1234adws21312-scaled.jpg",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1920,
|
||||
"mime_type": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": 6137,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/11/aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg",
|
||||
"filename": "6137-aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1919,
|
||||
"mime_type": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": 10801,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/12/mockup_03-copy-scaled.webp",
|
||||
"filename": "10801-mockup_03-copy-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1517,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10863,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/klz-directory-2-scaled.webp",
|
||||
"filename": "10863-klz-directory-2-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1694,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 6521,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/11/low-voltage-category.webp",
|
||||
"filename": "6521-low-voltage-category.webp",
|
||||
"alt": "",
|
||||
"width": 1920,
|
||||
"height": 1920,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10816,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/12/green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp",
|
||||
"filename": "10816-green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1457,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10667,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/12/production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp",
|
||||
"filename": "10667-production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp",
|
||||
"alt": "",
|
||||
"width": 1280,
|
||||
"height": 853,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10679,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2024/12/large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp",
|
||||
"filename": "10679-large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp",
|
||||
"alt": "",
|
||||
"width": 1280,
|
||||
"height": 854,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": 10988,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp",
|
||||
"filename": "10988-transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp",
|
||||
"alt": "",
|
||||
"width": 2560,
|
||||
"height": 1914,
|
||||
"mime_type": "image/webp"
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/06/NA2XSFL2Y-3-scaled.webp",
|
||||
"filename": "media-1766870855811-NA2XSFL2Y-3-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/06/N2XSFL2Y-3-scaled.webp",
|
||||
"filename": "media-1766870855811-N2XSFL2Y-3-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/06/H1Z2Z2-K-scaled.webp",
|
||||
"filename": "media-1766870855812-H1Z2Z2-K-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSFL2Y-3-scaled.webp",
|
||||
"filename": "media-1766870855813-NA2XSFL2Y-3-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSF2Y-3-scaled.webp",
|
||||
"filename": "media-1766870855813-NA2XSF2Y-3-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XS2Y-scaled.webp",
|
||||
"filename": "media-1766870855814-NA2XS2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XSY-scaled.webp",
|
||||
"filename": "media-1766870855814-NA2XSY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSFL2Y-2-scaled.webp",
|
||||
"filename": "media-1766870855815-N2XSFL2Y-2-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSF2Y-3-scaled.webp",
|
||||
"filename": "media-1766870855815-N2XSF2Y-3-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XS2Y-scaled.webp",
|
||||
"filename": "media-1766870855816-N2XS2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XSY-scaled.webp",
|
||||
"filename": "media-1766870855817-N2XSY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2X2Y-scaled.webp",
|
||||
"filename": "media-1766870855817-NA2X2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NA2XY-scaled.webp",
|
||||
"filename": "media-1766870855818-NA2XY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2X2Y-scaled.webp",
|
||||
"filename": "media-1766870855818-N2X2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/N2XY-scaled.webp",
|
||||
"filename": "media-1766870855820-N2XY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NAY2Y-scaled.webp",
|
||||
"filename": "media-1766870855821-NAY2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NAYCWY-scaled.webp",
|
||||
"filename": "media-1766870855821-NAYCWY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NAYY-scaled.webp",
|
||||
"filename": "media-1766870855822-NAYY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NY2Y-scaled.webp",
|
||||
"filename": "media-1766870855822-NY2Y-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NYCWY-scaled.webp",
|
||||
"filename": "media-1766870855823-NYCWY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
},
|
||||
{
|
||||
"id": null,
|
||||
"url": "https://klz-cables.com/wp-content/uploads/2025/01/NYY-scaled.webp",
|
||||
"filename": "media-1766870855823-NYY-scaled.webp",
|
||||
"alt": "",
|
||||
"width": null,
|
||||
"height": null,
|
||||
"mime_type": null
|
||||
}
|
||||
]
|
||||
120
data/raw/2025-12-27T21-26-12-521Z/menus.de.json
Normal file
120
data/raw/2025-12-27T21-26-12-521Z/menus.de.json
Normal file
@@ -0,0 +1,120 @@
|
||||
{
|
||||
"menus": [
|
||||
{
|
||||
"id": 82,
|
||||
"slug": "footer-deutsch",
|
||||
"name": "Footer - Deutsch",
|
||||
"locale": "de",
|
||||
"items": []
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"slug": "footer-english",
|
||||
"name": "Footer - English",
|
||||
"locale": "de",
|
||||
"items": []
|
||||
},
|
||||
{
|
||||
"id": 91,
|
||||
"slug": "languages-english",
|
||||
"name": "Languages - English",
|
||||
"locale": "de",
|
||||
"items": []
|
||||
},
|
||||
{
|
||||
"id": 81,
|
||||
"slug": "main-menu-deutsch",
|
||||
"name": "Main Menu - Deutsch",
|
||||
"locale": "de",
|
||||
"items": []
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"slug": "main-menu-english",
|
||||
"name": "Main Menu - English",
|
||||
"locale": "de",
|
||||
"items": []
|
||||
}
|
||||
],
|
||||
"locations": {
|
||||
"top_nav": {
|
||||
"name": "top_nav",
|
||||
"description": "Top Navigation Menu",
|
||||
"menu": 20,
|
||||
"_links": {
|
||||
"self": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations/top_nav",
|
||||
"targetHints": {
|
||||
"allow": [
|
||||
"GET"
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"collection": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations"
|
||||
}
|
||||
],
|
||||
"wp:menu": [
|
||||
{
|
||||
"embeddable": true,
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menus/20"
|
||||
}
|
||||
],
|
||||
"curies": [
|
||||
{
|
||||
"name": "wp",
|
||||
"href": "https://api.w.org/{rel}",
|
||||
"templated": true
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"secondary_nav": {
|
||||
"name": "secondary_nav",
|
||||
"description": "Secondary Navigation Menu",
|
||||
"menu": 0,
|
||||
"_links": {
|
||||
"self": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations/secondary_nav",
|
||||
"targetHints": {
|
||||
"allow": [
|
||||
"GET"
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"collection": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"off_canvas_nav": {
|
||||
"name": "off_canvas_nav",
|
||||
"description": "Off Canvas Navigation Menu",
|
||||
"menu": 0,
|
||||
"_links": {
|
||||
"self": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations/off_canvas_nav",
|
||||
"targetHints": {
|
||||
"allow": [
|
||||
"GET"
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"collection": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
120
data/raw/2025-12-27T21-26-12-521Z/menus.en.json
Normal file
120
data/raw/2025-12-27T21-26-12-521Z/menus.en.json
Normal file
@@ -0,0 +1,120 @@
|
||||
{
|
||||
"menus": [
|
||||
{
|
||||
"id": 82,
|
||||
"slug": "footer-deutsch",
|
||||
"name": "Footer - Deutsch",
|
||||
"locale": "en",
|
||||
"items": []
|
||||
},
|
||||
{
|
||||
"id": 48,
|
||||
"slug": "footer-english",
|
||||
"name": "Footer - English",
|
||||
"locale": "en",
|
||||
"items": []
|
||||
},
|
||||
{
|
||||
"id": 91,
|
||||
"slug": "languages-english",
|
||||
"name": "Languages - English",
|
||||
"locale": "en",
|
||||
"items": []
|
||||
},
|
||||
{
|
||||
"id": 81,
|
||||
"slug": "main-menu-deutsch",
|
||||
"name": "Main Menu - Deutsch",
|
||||
"locale": "en",
|
||||
"items": []
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"slug": "main-menu-english",
|
||||
"name": "Main Menu - English",
|
||||
"locale": "en",
|
||||
"items": []
|
||||
}
|
||||
],
|
||||
"locations": {
|
||||
"top_nav": {
|
||||
"name": "top_nav",
|
||||
"description": "Top Navigation Menu",
|
||||
"menu": 20,
|
||||
"_links": {
|
||||
"self": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations/top_nav",
|
||||
"targetHints": {
|
||||
"allow": [
|
||||
"GET"
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"collection": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations"
|
||||
}
|
||||
],
|
||||
"wp:menu": [
|
||||
{
|
||||
"embeddable": true,
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menus/20"
|
||||
}
|
||||
],
|
||||
"curies": [
|
||||
{
|
||||
"name": "wp",
|
||||
"href": "https://api.w.org/{rel}",
|
||||
"templated": true
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"secondary_nav": {
|
||||
"name": "secondary_nav",
|
||||
"description": "Secondary Navigation Menu",
|
||||
"menu": 0,
|
||||
"_links": {
|
||||
"self": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations/secondary_nav",
|
||||
"targetHints": {
|
||||
"allow": [
|
||||
"GET"
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"collection": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"off_canvas_nav": {
|
||||
"name": "off_canvas_nav",
|
||||
"description": "Off Canvas Navigation Menu",
|
||||
"menu": 0,
|
||||
"_links": {
|
||||
"self": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations/off_canvas_nav",
|
||||
"targetHints": {
|
||||
"allow": [
|
||||
"GET"
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"collection": [
|
||||
{
|
||||
"href": "https://klz-cables.com/wp-json/wp/v2/menu-locations"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
110
data/raw/2025-12-27T21-26-12-521Z/pages.de.json
Normal file
110
data/raw/2025-12-27T21-26-12-521Z/pages.de.json
Normal file
File diff suppressed because one or more lines are too long
110
data/raw/2025-12-27T21-26-12-521Z/pages.en.json
Normal file
110
data/raw/2025-12-27T21-26-12-521Z/pages.en.json
Normal file
File diff suppressed because one or more lines are too long
392
data/raw/2025-12-27T21-26-12-521Z/posts.de.json
Normal file
392
data/raw/2025-12-27T21-26-12-521Z/posts.de.json
Normal file
File diff suppressed because one or more lines are too long
379
data/raw/2025-12-27T21-26-12-521Z/posts.en.json
Normal file
379
data/raw/2025-12-27T21-26-12-521Z/posts.en.json
Normal file
File diff suppressed because one or more lines are too long
72
data/raw/2025-12-27T21-26-12-521Z/product-categories.de.json
Normal file
72
data/raw/2025-12-27T21-26-12-521Z/product-categories.de.json
Normal file
@@ -0,0 +1,72 @@
|
||||
[
|
||||
{
|
||||
"id": 115,
|
||||
"translationKey": "product-category-ausruestung",
|
||||
"locale": "de",
|
||||
"slug": "ausruestung",
|
||||
"name": "Ausrüstung",
|
||||
"path": "/de/product-category/ausruestung",
|
||||
"description": "",
|
||||
"count": 0
|
||||
},
|
||||
{
|
||||
"id": 107,
|
||||
"translationKey": "product-category-hochspannungskabel",
|
||||
"locale": "de",
|
||||
"slug": "hochspannungskabel",
|
||||
"name": "Hochspannungskabel",
|
||||
"path": "/de/product-category/hochspannungskabel",
|
||||
"description": "",
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"id": 111,
|
||||
"translationKey": "product-category-mittelspannungskabel",
|
||||
"locale": "de",
|
||||
"slug": "mittelspannungskabel",
|
||||
"name": "Mittelspannungskabel",
|
||||
"path": "/de/product-category/mittelspannungskabel",
|
||||
"description": "",
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"id": 109,
|
||||
"translationKey": "product-category-niederspannungskabel",
|
||||
"locale": "de",
|
||||
"slug": "niederspannungskabel",
|
||||
"name": "Niederspannungskabel",
|
||||
"path": "/de/product-category/niederspannungskabel",
|
||||
"description": "",
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"id": 113,
|
||||
"translationKey": "product-category-solarkabel",
|
||||
"locale": "de",
|
||||
"slug": "solarkabel",
|
||||
"name": "Solarkabel",
|
||||
"path": "/de/product-category/solarkabel",
|
||||
"description": "",
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"id": 105,
|
||||
"translationKey": "product-category-stromkabel",
|
||||
"locale": "de",
|
||||
"slug": "stromkabel",
|
||||
"name": "Stromkabel",
|
||||
"path": "/de/product-category/stromkabel",
|
||||
"description": "",
|
||||
"count": 20
|
||||
},
|
||||
{
|
||||
"id": 93,
|
||||
"translationKey": "product-category-uncategorized-de",
|
||||
"locale": "de",
|
||||
"slug": "uncategorized-de",
|
||||
"name": "Uncategorized",
|
||||
"path": "/de/product-category/uncategorized-de",
|
||||
"description": "",
|
||||
"count": 0
|
||||
}
|
||||
]
|
||||
72
data/raw/2025-12-27T21-26-12-521Z/product-categories.en.json
Normal file
72
data/raw/2025-12-27T21-26-12-521Z/product-categories.en.json
Normal file
@@ -0,0 +1,72 @@
|
||||
[
|
||||
{
|
||||
"id": 44,
|
||||
"translationKey": "product-category-equipment",
|
||||
"locale": "en",
|
||||
"slug": "equipment",
|
||||
"name": "Equipment",
|
||||
"path": "/product-category/equipment",
|
||||
"description": "",
|
||||
"count": 0
|
||||
},
|
||||
{
|
||||
"id": 41,
|
||||
"translationKey": "product-category-high-voltage-cables",
|
||||
"locale": "en",
|
||||
"slug": "high-voltage-cables",
|
||||
"name": "High Voltage Cables",
|
||||
"path": "/product-category/high-voltage-cables",
|
||||
"description": "",
|
||||
"count": 2
|
||||
},
|
||||
{
|
||||
"id": 40,
|
||||
"translationKey": "product-category-low-voltage-cables",
|
||||
"locale": "en",
|
||||
"slug": "low-voltage-cables",
|
||||
"name": "Low Voltage Cables",
|
||||
"path": "/product-category/low-voltage-cables",
|
||||
"description": "",
|
||||
"count": 10
|
||||
},
|
||||
{
|
||||
"id": 39,
|
||||
"translationKey": "product-category-medium-voltage-cables",
|
||||
"locale": "en",
|
||||
"slug": "medium-voltage-cables",
|
||||
"name": "Medium Voltage Cables",
|
||||
"path": "/product-category/medium-voltage-cables",
|
||||
"description": "",
|
||||
"count": 8
|
||||
},
|
||||
{
|
||||
"id": 42,
|
||||
"translationKey": "product-category-power-cables",
|
||||
"locale": "en",
|
||||
"slug": "power-cables",
|
||||
"name": "Power Cables",
|
||||
"path": "/product-category/power-cables",
|
||||
"description": "",
|
||||
"count": 20
|
||||
},
|
||||
{
|
||||
"id": 43,
|
||||
"translationKey": "product-category-solar-cables",
|
||||
"locale": "en",
|
||||
"slug": "solar-cables",
|
||||
"name": "Solar Cables",
|
||||
"path": "/product-category/solar-cables",
|
||||
"description": "",
|
||||
"count": 1
|
||||
},
|
||||
{
|
||||
"id": 38,
|
||||
"translationKey": "product-category-uncategorized",
|
||||
"locale": "en",
|
||||
"slug": "uncategorized",
|
||||
"name": "Uncategorized",
|
||||
"path": "/product-category/uncategorized",
|
||||
"description": "",
|
||||
"count": 0
|
||||
}
|
||||
]
|
||||
13479
data/raw/2025-12-27T21-26-12-521Z/products.de.json
Normal file
13479
data/raw/2025-12-27T21-26-12-521Z/products.de.json
Normal file
File diff suppressed because it is too large
Load Diff
13479
data/raw/2025-12-27T21-26-12-521Z/products.en.json
Normal file
13479
data/raw/2025-12-27T21-26-12-521Z/products.en.json
Normal file
File diff suppressed because it is too large
Load Diff
356
data/raw/2025-12-27T21-26-12-521Z/redirects.json
Normal file
356
data/raw/2025-12-27T21-26-12-521Z/redirects.json
Normal file
@@ -0,0 +1,356 @@
|
||||
[
|
||||
{
|
||||
"source": "/focus-on-wind-farm-construction-three-typical-cable-challenges",
|
||||
"destination": "/blog/focus-on-wind-farm-construction-three-typical-cable-challenges",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/why-the-n2xsf2y-is-the-ideal-cable-for-your-energy-project",
|
||||
"destination": "/blog/why-the-n2xsf2y-is-the-ideal-cable-for-your-energy-project",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/na2xsf2y-three-conductor-medium-voltage-cable-available",
|
||||
"destination": "/blog/na2xsf2y-three-conductor-medium-voltage-cable-available",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/which-cables-for-wind-power-differences-from-low-to-extra-high-voltage-explained-2",
|
||||
"destination": "/blog/which-cables-for-wind-power-differences-from-low-to-extra-high-voltage-explained-2",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/the-best-underground-cables-for-wind-power-and-solar-order-from-us-now",
|
||||
"destination": "/blog/the-best-underground-cables-for-wind-power-and-solar-order-from-us-now",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/green-energy-starts-underground-and-with-a-plan",
|
||||
"destination": "/blog/green-energy-starts-underground-and-with-a-plan",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/securing-the-future-with-h1z2z2-k-our-solar-cable-for-intersolar-2025",
|
||||
"destination": "/blog/securing-the-future-with-h1z2z2-k-our-solar-cable-for-intersolar-2025",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/how-the-cable-industry-is-driving-sustainability-and-renewable-energies-forward",
|
||||
"destination": "/blog/how-the-cable-industry-is-driving-sustainability-and-renewable-energies-forward",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/billion-euro-package-for-infrastructure-the-cable-boom-is-coming",
|
||||
"destination": "/blog/billion-euro-package-for-infrastructure-the-cable-boom-is-coming",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/100-renewable-energy-only-with-the-right-cable-infrastructure",
|
||||
"destination": "/blog/100-renewable-energy-only-with-the-right-cable-infrastructure",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/from-smart-to-sustainable-this-is-what-the-energy-industry-will-look-like-in-the-near-future",
|
||||
"destination": "/blog/from-smart-to-sustainable-this-is-what-the-energy-industry-will-look-like-in-the-near-future",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/cable-abbreviations-decoded-the-key-to-choosing-the-right-cable",
|
||||
"destination": "/blog/cable-abbreviations-decoded-the-key-to-choosing-the-right-cable",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/why-wind-farm-grid-connection-cables-must-withstand-extreme-loads",
|
||||
"destination": "/blog/why-wind-farm-grid-connection-cables-must-withstand-extreme-loads",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/recycling-of-cable-drums-sustainability-in-wind-power-projects",
|
||||
"destination": "/blog/recycling-of-cable-drums-sustainability-in-wind-power-projects",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/cost-comparison-copper-vs-aluminum-cables-in-wind-farms-which-is-worthwhile-in-the-long-term",
|
||||
"destination": "/blog/cost-comparison-copper-vs-aluminum-cables-in-wind-farms-which-is-worthwhile-in-the-long-term",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/the-perfect-cable-inquiry-how-to-save-yourself-unnecessary-queries",
|
||||
"destination": "/blog/the-perfect-cable-inquiry-how-to-save-yourself-unnecessary-queries",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/expanding-the-grid-by-2025-building-the-foundation-for-a-successful-energy-transition",
|
||||
"destination": "/blog/expanding-the-grid-by-2025-building-the-foundation-for-a-successful-energy-transition",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/is-wind-energy-really-enough-a-deeper-dive-behind-the-headlines",
|
||||
"destination": "/blog/is-wind-energy-really-enough-a-deeper-dive-behind-the-headlines",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/how-the-right-cables-quietly-power-the-green-energy-revolution",
|
||||
"destination": "/blog/how-the-right-cables-quietly-power-the-green-energy-revolution",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/climate-neutral-by-2050-what-we-need-to-do-to-achieve-this-goal",
|
||||
"destination": "/blog/climate-neutral-by-2050-what-we-need-to-do-to-achieve-this-goal",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/the-art-of-cable-logistics-moving-the-backbone-of-modern-energy-networks",
|
||||
"destination": "/blog/the-art-of-cable-logistics-moving-the-backbone-of-modern-energy-networks",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/cable-drum-safety-ensuring-smooth-operations-and-accident-free-environments",
|
||||
"destination": "/blog/cable-drum-safety-ensuring-smooth-operations-and-accident-free-environments",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/klz-in-the-directory-of-wind-energy-2025",
|
||||
"destination": "/blog/klz-in-the-directory-of-wind-energy-2025",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/what-makes-a-first-class-cable-find-out-here",
|
||||
"destination": "/blog/what-makes-a-first-class-cable-find-out-here",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/welcome-to-the-future-of-klz-our-new-website-is-live",
|
||||
"destination": "/blog/welcome-to-the-future-of-klz-our-new-website-is-live",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/eye-opening-realities-of-green-energy-transformation",
|
||||
"destination": "/blog/eye-opening-realities-of-green-energy-transformation",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/cable-drum-quality-the-foundation-of-cable-reliability",
|
||||
"destination": "/blog/cable-drum-quality-the-foundation-of-cable-reliability",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/this-what-you-need-to-know-about-renewable-energies-in-2025",
|
||||
"destination": "/blog/this-what-you-need-to-know-about-renewable-energies-in-2025",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/how-to-choose-the-right-cable-for-your-next-project",
|
||||
"destination": "/blog/how-to-choose-the-right-cable-for-your-next-project",
|
||||
"permanent": true,
|
||||
"locale": "en"
|
||||
},
|
||||
{
|
||||
"source": "/de/windparkbau-im-fokus-drei-typische-kabelherausforderungen",
|
||||
"destination": "/de/blog/windparkbau-im-fokus-drei-typische-kabelherausforderungen",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/klz-waechst-weiter-neue-staerke-im-bereich-financial-sales",
|
||||
"destination": "/de/blog/klz-waechst-weiter-neue-staerke-im-bereich-financial-sales",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/n2xsf2y-mittelspannungskabel-energieprojekt",
|
||||
"destination": "/de/blog/n2xsf2y-mittelspannungskabel-energieprojekt",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/na2xsf2y-dreileiter-mittelspannungskabel-lieferbar",
|
||||
"destination": "/de/blog/na2xsf2y-dreileiter-mittelspannungskabel-lieferbar",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/welche-kabel-fuer-windkraft-unterschiede-von-nieder-bis-hoechstspannung-erklaert",
|
||||
"destination": "/de/blog/welche-kabel-fuer-windkraft-unterschiede-von-nieder-bis-hoechstspannung-erklaert",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/die-besten-erdkabel-fuer-windkraft-und-solar-jetzt-bei-uns-bestellen",
|
||||
"destination": "/de/blog/die-besten-erdkabel-fuer-windkraft-und-solar-jetzt-bei-uns-bestellen",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/gruene-energie-beginnt-unter-der-erde-und-zwar-mit-plan",
|
||||
"destination": "/de/blog/gruene-energie-beginnt-unter-der-erde-und-zwar-mit-plan",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/zukunft-sichern-mit-h1z2z2-k-unser-solarkabel-zur-intersolar-2025",
|
||||
"destination": "/de/blog/zukunft-sichern-mit-h1z2z2-k-unser-solarkabel-zur-intersolar-2025",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/wie-die-kabelbranche-nachhaltigkeit-und-erneuerbare-energien-vorantreibt",
|
||||
"destination": "/de/blog/wie-die-kabelbranche-nachhaltigkeit-und-erneuerbare-energien-vorantreibt",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/milliarden-paket-fuer-infrastruktur-der-kabel-boom-steht-bevor",
|
||||
"destination": "/de/blog/milliarden-paket-fuer-infrastruktur-der-kabel-boom-steht-bevor",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/100-erneuerbare-energie-nur-mit-der-richtigen-kabelinfrastruktur",
|
||||
"destination": "/de/blog/100-erneuerbare-energie-nur-mit-der-richtigen-kabelinfrastruktur",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/von-smart-bis-nachhaltig-so-sieht-die-energiewirtschaft-in-naher-zukunft-aus",
|
||||
"destination": "/de/blog/von-smart-bis-nachhaltig-so-sieht-die-energiewirtschaft-in-naher-zukunft-aus",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/kabelabkuerzungen-entschluesselt-der-schluessel-zur-richtigen-kabelwahl",
|
||||
"destination": "/de/blog/kabelabkuerzungen-entschluesselt-der-schluessel-zur-richtigen-kabelwahl",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/warum-windpark-netzanschlusskabel-extremen-belastungen-standhalten-muessen",
|
||||
"destination": "/de/blog/warum-windpark-netzanschlusskabel-extremen-belastungen-standhalten-muessen",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/recycling-von-kabeltrommeln-nachhaltigkeit-im-windkraftprojekt",
|
||||
"destination": "/de/blog/recycling-von-kabeltrommeln-nachhaltigkeit-im-windkraftprojekt",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/kostenvergleich-kupfer-vs-aluminiumkabel-in-windparks-was-lohnt-sich-langfristig",
|
||||
"destination": "/de/blog/kostenvergleich-kupfer-vs-aluminiumkabel-in-windparks-was-lohnt-sich-langfristig",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/die-perfekte-kabelanfrage-so-sparen-sie-sich-unnoetige-rueckfragen",
|
||||
"destination": "/de/blog/die-perfekte-kabelanfrage-so-sparen-sie-sich-unnoetige-rueckfragen",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/netzausbau-2025-warum-jede-neue-leitung-ein-schritt-zur-energiewende-ist",
|
||||
"destination": "/de/blog/netzausbau-2025-warum-jede-neue-leitung-ein-schritt-zur-energiewende-ist",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/reicht-windenergie-wirklich-nicht-ein-blick-hinter-die-schlagzeilen",
|
||||
"destination": "/de/blog/reicht-windenergie-wirklich-nicht-ein-blick-hinter-die-schlagzeilen",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/warum-die-richtigen-kabel-der-geheime-held-der-gruenen-energie-sind",
|
||||
"destination": "/de/blog/warum-die-richtigen-kabel-der-geheime-held-der-gruenen-energie-sind",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/klimaneutral-bis-2050-was-wir-tun-muessen-um-das-ziel-zu-erreichen",
|
||||
"destination": "/de/blog/klimaneutral-bis-2050-was-wir-tun-muessen-um-das-ziel-zu-erreichen",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/kabeltrommelqualitaet-die-grundlage-der-kabelzuverlaessigkeit",
|
||||
"destination": "/de/blog/kabeltrommelqualitaet-die-grundlage-der-kabelzuverlaessigkeit",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/das-muessen-sie-ueber-erneuerbare-energien-im-jahr-2025-wissen",
|
||||
"destination": "/de/blog/das-muessen-sie-ueber-erneuerbare-energien-im-jahr-2025-wissen",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/willkommen-in-der-zukunft-von-klz-unsere-neue-website-ist-online",
|
||||
"destination": "/de/blog/willkommen-in-der-zukunft-von-klz-unsere-neue-website-ist-online",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/klz-im-adressbuch-der-windenergie-2025",
|
||||
"destination": "/de/blog/klz-im-adressbuch-der-windenergie-2025",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/so-waehlen-sie-das-richtige-kabel-fuer-ihr-naechstes-projekt-aus",
|
||||
"destination": "/de/blog/so-waehlen-sie-das-richtige-kabel-fuer-ihr-naechstes-projekt-aus",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/erkenntnisse-ueber-die-gruene-energiewende-herausforderungen-und-chancen",
|
||||
"destination": "/de/blog/erkenntnisse-ueber-die-gruene-energiewende-herausforderungen-und-chancen",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/was-macht-ein-erstklassiges-kabel-aus-finden-sie-es-hier-heraus",
|
||||
"destination": "/de/blog/was-macht-ein-erstklassiges-kabel-aus-finden-sie-es-hier-heraus",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/sicherheit-bei-kabeltrommeln-unfallfrei-und-effizient-arbeiten",
|
||||
"destination": "/de/blog/sicherheit-bei-kabeltrommeln-unfallfrei-und-effizient-arbeiten",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
},
|
||||
{
|
||||
"source": "/de/die-kunst-der-kabellogistik-der-transport-des-fundamentes-moderner-energienetze",
|
||||
"destination": "/de/blog/die-kunst-der-kabellogistik-der-transport-des-fundamentes-moderner-energienetze",
|
||||
"permanent": true,
|
||||
"locale": "de"
|
||||
}
|
||||
]
|
||||
14
data/raw/2025-12-27T21-26-12-521Z/site-info.json
Normal file
14
data/raw/2025-12-27T21-26-12-521Z/site-info.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"baseUrl": "https://klz-cables.com",
|
||||
"exportDate": "2025-12-27T21:26:12.523Z",
|
||||
"timestamp": "2025-12-27T21-26-12-521Z",
|
||||
"polylang": false,
|
||||
"languages": [
|
||||
"en",
|
||||
"de"
|
||||
],
|
||||
"defaultLocale": "en",
|
||||
"siteTitle": "KLZ Cables",
|
||||
"siteDescription": "Empowering a sustainable future through innovative and reliable energy solutions.",
|
||||
"defaultLanguage": "en"
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
{
|
||||
"pages": {
|
||||
"terms": {
|
||||
"en": 10544,
|
||||
"de": 10930,
|
||||
"score": 0.6616190476190477
|
||||
},
|
||||
"legal-notice": {
|
||||
"en": 10540,
|
||||
"de": 10921,
|
||||
"score": 0.5142857142857142
|
||||
},
|
||||
"privacy-policy": {
|
||||
"en": 10535,
|
||||
"de": 10926,
|
||||
"score": 0.52
|
||||
},
|
||||
"thanks": {
|
||||
"en": 10487,
|
||||
"de": 10932,
|
||||
"score": 0.6909090909090909
|
||||
},
|
||||
"contact": {
|
||||
"en": 10375,
|
||||
"de": 10914,
|
||||
"score": 0.7813664596273293
|
||||
},
|
||||
"products": {
|
||||
"en": 6032,
|
||||
"de": 10916,
|
||||
"score": 0.6000000000000001
|
||||
},
|
||||
"corporate-3-landing-2": {
|
||||
"en": 10895,
|
||||
"de": 10896,
|
||||
"score": 0.5270588235294118
|
||||
},
|
||||
"blog": {
|
||||
"en": 209,
|
||||
"de": 10911,
|
||||
"score": 0.8799999999999999
|
||||
}
|
||||
},
|
||||
"posts": {
|
||||
"securing-the-future-with-h1z2z2-k-our-solar-cable-for-intersolar-2025": {
|
||||
"en": 46391,
|
||||
"de": 46361,
|
||||
"score": 0.5838961038961039
|
||||
},
|
||||
"100-renewable-energy-only-with-the-right-cable-infrastructure": {
|
||||
"en": 45962,
|
||||
"de": 45946,
|
||||
"score": 0.5258601553829079
|
||||
},
|
||||
"recycling-of-cable-drums-sustainability-in-wind-power-projects": {
|
||||
"en": 45660,
|
||||
"de": 45651,
|
||||
"score": 0.5119047619047619
|
||||
},
|
||||
"climate-neutral-by-2050-what-we-need-to-do-to-achieve-this-goal": {
|
||||
"en": 11261,
|
||||
"de": 11247,
|
||||
"score": 0.5111940298507462
|
||||
},
|
||||
"klz-in-the-directory-of-wind-energy-2025": {
|
||||
"en": 10855,
|
||||
"de": 11236,
|
||||
"score": 0.5681481481481482
|
||||
},
|
||||
"what-makes-a-first-class-cable-find-out-here": {
|
||||
"en": 10532,
|
||||
"de": 11213,
|
||||
"score": 0.5268531468531469
|
||||
},
|
||||
"welcome-to-the-future-of-klz-our-new-website-is-live": {
|
||||
"en": 10780,
|
||||
"de": 11239,
|
||||
"score": 0.5903030303030303
|
||||
},
|
||||
"how-to-choose-the-right-cable-for-your-next-project": {
|
||||
"en": 6009,
|
||||
"de": 11233,
|
||||
"score": 0.5127140255009108
|
||||
}
|
||||
},
|
||||
"products": {},
|
||||
"productCategories": {}
|
||||
}
|
||||
44
data/raw/2025-12-27T21-26-12-521Z/translation-mapping.json
Normal file
44
data/raw/2025-12-27T21-26-12-521Z/translation-mapping.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"pages": {
|
||||
"team": {
|
||||
"en": 10453,
|
||||
"de": 10930
|
||||
},
|
||||
"blog": {
|
||||
"en": 209,
|
||||
"de": 10911
|
||||
}
|
||||
},
|
||||
"posts": {},
|
||||
"products": {
|
||||
"n2xsfl2y": {
|
||||
"en": 46771,
|
||||
"de": 46772
|
||||
},
|
||||
"h1z2z2-k": {
|
||||
"en": 46769,
|
||||
"de": 46770
|
||||
},
|
||||
"na2xfk2y": {
|
||||
"en": 46767,
|
||||
"de": 46768
|
||||
},
|
||||
"n2xfk2y": {
|
||||
"en": 46765,
|
||||
"de": 46766
|
||||
},
|
||||
"na2xfkld2y": {
|
||||
"en": 46763,
|
||||
"de": 46764
|
||||
},
|
||||
"n2xfkld2y": {
|
||||
"en": 46761,
|
||||
"de": 46762
|
||||
},
|
||||
"na2xsfl2y": {
|
||||
"en": 45065,
|
||||
"de": 46774
|
||||
}
|
||||
},
|
||||
"productCategories": {}
|
||||
}
|
||||
Reference in New Issue
Block a user