diff --git a/README.md b/README.md
index 18221c48..4475ea6f 100644
--- a/README.md
+++ b/README.md
@@ -5,10 +5,10 @@
Для работы с md файлами локально можно использовать [плагин](https://marketplace.visualstudio.com/items?itemName=Nuxt.mdc) для VSCode.
Это позволит вам предварительно просматривать контент прямо в редакторе. Однако для более точного представления конечного вида контента рекомендуется запускать сайт локально. Ниже приведены инструкции по запуску сайта.
-- [Как добавить партнера](./content/ru/_partners/software/.README.md);
-- [Как добавить интегратора](./content/ru/_partners/integrator/.README.md);
-- [Как добавить вакансию](./content/ru/jobs/.README.md);
-- [Как добавить ссылку на статью](./content/ru/_articles/.README.md);
+- [Как добавить партнера](./doc/partners.md);
+- [Как добавить интегратора](./doc/integrators.md);
+- [Как добавить вакансию](doc/vacancies);
+- [Как добавить ссылку на статью](./doc/articles.md);
- [Дополнительные компоненты](./doc/components.md).
## Как запустить сайт локально
diff --git a/common/article_categories.ts b/common/article_categories.ts
new file mode 100644
index 00000000..eea29848
--- /dev/null
+++ b/common/article_categories.ts
@@ -0,0 +1,28 @@
+import type { Categories } from '~/common/types';
+
+export const categories: Categories = {
+ ru: [
+ { name: 'user_experience', label: 'Опыт пользователей', sub_category: [
+ { name: 'retail', label: 'Ритейл, рестораны и отели' },
+ { name: 'business_objects', label: 'Бизнес-объекты' },
+ { name: 'tsod', label: 'ЦОД' },
+ { name: 'apartments', label: 'Многоквартирные дома и ЖК' },
+ { name: 'embedded', label: 'Встраиваемые системы и метеостанции' },
+ { name: 'home_automation', label: 'Домашняя автоматизация' },
+ ]
+ },
+ { name: 'hardware_selection', label: 'Подбор оборудования' },
+ { name: 'educational', label: 'Обучающие ролики', sub_category: [
+ { name: 'beginners', label: 'Начинающим' },
+ { name: 'node_red', label: 'Автоматизация на Node-RED' },
+ { name: 'ventilation', label: 'Вентиляция' },
+ { name: 'heating', label: 'Отопление' },
+ { name: 'electrics', label: 'Электрика' },
+ { name: 'integrations', label: 'Интеграция со сторонним ПО' },
+ { name: '3rd_party_devices', label: 'Подключение сторонних устройств' },
+ ]
+ },
+ { name: 'manufactoring', label: 'О производстве и процессах' },
+ ],
+ en: [],
+};
diff --git a/common/districts.ts b/common/districts.ts
new file mode 100644
index 00000000..79b28640
--- /dev/null
+++ b/common/districts.ts
@@ -0,0 +1,17 @@
+import type { Districts } from '~/common/types';
+
+export const districts: Districts = {
+ ru: [
+ { value: 'moscow', label: 'Москва и область', coordinates: [55.8, 37.5], zoom: 9 },
+ { value: 'spb', label: 'Северо-Западный округ', coordinates: [59.75, 30.5], zoom: 9 },
+ { value: 'center', label: 'Центральный округ', coordinates: [54.21, 37.62], zoom: 12 },
+ { value: 'volga', label: 'Приволжский округ', coordinates: [57.5, 51], zoom: 6 },
+ { value: 'ural', label: 'Уральский округ', coordinates: [56.84, 60.57], zoom: 12 },
+ { value: 'by', label: 'Беларусь', coordinates: [53.95, 27.65], zoom: 9 },
+ { value: 'kg', label: 'Кыргызстан', coordinates: [42.90, 74.5], zoom: 10 },
+ ],
+ en: [
+ { value: 'by', label: 'Republic of Belarus', coordinates: [53.95, 27.65], zoom: 12 },
+ { value: 'kg', label: 'Republic of Kyrgyzstan', coordinates: [42.90, 74.5], zoom: 10 },
+ ],
+};
diff --git a/common/types.ts b/common/types.ts
new file mode 100644
index 00000000..9ccc7e36
--- /dev/null
+++ b/common/types.ts
@@ -0,0 +1,29 @@
+import type { Locale } from '@intlify/core-base';
+
+export interface Category {
+ name: string;
+ label: string;
+ sub_category?: Category[];
+}
+
+export interface Categories {
+ [locale: Locale]: Category[];
+}
+
+export interface Article {
+ title: string;
+ cover: string;
+ url: string;
+ date: string;
+}
+
+export interface District {
+ value: string;
+ label: string;
+ coordinates: number[];
+ zoom: number;
+}
+
+export interface Districts {
+ [locale: Locale]: District[];
+}
diff --git a/components/Article.vue b/components/Article.vue
index 2843e87d..88fad8af 100644
--- a/components/Article.vue
+++ b/components/Article.vue
@@ -1,8 +1,9 @@
diff --git a/components/content/Partner.vue b/components/content/Partner.vue
index 54d01a65..9213fb64 100644
--- a/components/content/Partner.vue
+++ b/components/content/Partner.vue
@@ -1,7 +1,10 @@
diff --git a/composables/localizedData.ts b/composables/localizedData.ts
index 7b6fa7eb..fc4df058 100644
--- a/composables/localizedData.ts
+++ b/composables/localizedData.ts
@@ -1,7 +1,7 @@
import type { ParsedContent } from '@nuxt/content';
import type { Ref } from 'vue';
-export const useLocalizedData = async (path: string): Promise> => {
+export const useLocalizedData = async (path: string, _partial = false): Promise> => {
const { locale } = useI18n();
- return useAsyncData(path, () => queryContent(path).where({ _partial: false, _locale: locale.value }).findOne()).data;
+ return useAsyncData(path, () => queryContent(path).where({ _partial, _locale: locale.value }).findOne()).data;
}
diff --git a/content/en/_partners/integrator/ledfarm.md b/content/en/_integrators/ledfarm.md
similarity index 96%
rename from content/en/_partners/integrator/ledfarm.md
rename to content/en/_integrators/ledfarm.md
index f08a7b36..5e866e47 100644
--- a/content/en/_partners/integrator/ledfarm.md
+++ b/content/en/_integrators/ledfarm.md
@@ -2,7 +2,7 @@
district: [by]
coordinates: [53.946722375392426, 27.61806785065508]
title: LedFarm.by
-logo: /img/partners/integrator/ledfarm.webp
+logo: /img/integrators/ledfarm.webp
phone: 375259237554
website: https://ledfarm.by
email: info@ledfarm.by
diff --git a/content/en/_partners/integrator/produmano.md b/content/en/_integrators/produmano.md
similarity index 95%
rename from content/en/_partners/integrator/produmano.md
rename to content/en/_integrators/produmano.md
index c6864e37..de6b85c4 100644
--- a/content/en/_partners/integrator/produmano.md
+++ b/content/en/_integrators/produmano.md
@@ -2,7 +2,7 @@
district: [kg]
coordinates: [42.82789274724515, 74.60996178787109]
title: TekoPro LLC
-logo: /img/partners/integrator/produmano.webp
+logo: /img/integrators/produmano.webp
phone: 996550881155
website: https://produmano.kg
email: tekopro2016@gmail.com
diff --git a/content/en/_partners/integrator/tk_allians.md b/content/en/_integrators/tk_allians.md
similarity index 93%
rename from content/en/_partners/integrator/tk_allians.md
rename to content/en/_integrators/tk_allians.md
index 0fb116f7..c49ed2a5 100644
--- a/content/en/_partners/integrator/tk_allians.md
+++ b/content/en/_integrators/tk_allians.md
@@ -2,7 +2,7 @@
district: [by]
coordinates: [53.947585900865356, 27.69945695143718]
title: Private company "TKAllianceBel"
-logo: /img/partners/integrator/tk_allians.webp
+logo: /img/integrators/tk_allians.webp
phone: 375447987353
website: https://tk-allians.by
email: info@tk-allians.by
diff --git a/content/en/_partners/software/fiord.md b/content/en/_partners/fiord.md
similarity index 95%
rename from content/en/_partners/software/fiord.md
rename to content/en/_partners/fiord.md
index 2320d46f..e7f065b0 100644
--- a/content/en/_partners/software/fiord.md
+++ b/content/en/_partners/fiord.md
@@ -1,6 +1,6 @@
---
title: FIORD
-logo: /img/partners/software/fiord.webp
+logo: /img/partners/fiord.webp
phone: 78123236212
website: https://fiord.com/
email: info@fiord.com
diff --git a/content/en/_partners/software/inpro.md b/content/en/_partners/inpro.md
similarity index 95%
rename from content/en/_partners/software/inpro.md
rename to content/en/_partners/inpro.md
index ddef0934..76dcd4f2 100644
--- a/content/en/_partners/software/inpro.md
+++ b/content/en/_partners/inpro.md
@@ -1,6 +1,6 @@
---
title: INTERACTIVE SPACES
-logo: /img/partners/software/inpro.webp
+logo: /img/partners/inpro.webp
phone: 74997556219
website: https://inpro.su
email : contact@inpro.su
diff --git a/content/en/_partners/software/iridi.md b/content/en/_partners/iridi.md
similarity index 94%
rename from content/en/_partners/software/iridi.md
rename to content/en/_partners/iridi.md
index a132e2a3..3c82993f 100644
--- a/content/en/_partners/software/iridi.md
+++ b/content/en/_partners/iridi.md
@@ -1,6 +1,6 @@
---
title: iRidium mobile
-logo: /img/partners/software/iridi.webp
+logo: /img/partners/iridi.webp
phone: 74993227329
website: https://iridi.com
email: contact@iridi.com
diff --git a/content/en/_partners/software/rapid_scada.md b/content/en/_partners/rapid_scada.md
similarity index 91%
rename from content/en/_partners/software/rapid_scada.md
rename to content/en/_partners/rapid_scada.md
index 18dd7eac..8d59183f 100644
--- a/content/en/_partners/software/rapid_scada.md
+++ b/content/en/_partners/rapid_scada.md
@@ -1,6 +1,6 @@
---
title: LLC "Rapid Software"
-logo: /img/partners/software/rapid_scada.webp
+logo: /img/partners/rapid_scada.webp
phone: 74732303612
website: https://rapidscada.org
email: info@rapidscada.org
diff --git a/content/en/_partners/software/rightech.md b/content/en/_partners/rightech.md
similarity index 96%
rename from content/en/_partners/software/rightech.md
rename to content/en/_partners/rightech.md
index 07d655f8..de9e6b82 100644
--- a/content/en/_partners/software/rightech.md
+++ b/content/en/_partners/rightech.md
@@ -1,6 +1,6 @@
---
title: Rightech IoT Cloud
-logo: /img/partners/software/rightech.webp
+logo: /img/partners/rightech.webp
phone: 74994506525
website: https://rightech.io
email: sales@rightech.io
diff --git a/content/ru/_articles/educational/node_red/3_scenarios.md b/content/ru/_articles/3_scenarios.md
similarity index 82%
rename from content/ru/_articles/educational/node_red/3_scenarios.md
rename to content/ru/_articles/3_scenarios.md
index bf487f2a..a8a1feac 100644
--- a/content/ru/_articles/educational/node_red/3_scenarios.md
+++ b/content/ru/_articles/3_scenarios.md
@@ -3,6 +3,5 @@ title: Ещё три полезных сценария на Node-RED
url: https://habr.com/ru/companies/wirenboard/articles/689826/
cover: /img/articles/educational/node_red/3_scenarios.jpeg
date: 2022-09-23
-category: educational
-sub_category: node_red
+category: node_red
---
diff --git a/content/ru/_articles/educational/node_red/4_scenarios.md b/content/ru/_articles/4_scenarios.md
similarity index 82%
rename from content/ru/_articles/educational/node_red/4_scenarios.md
rename to content/ru/_articles/4_scenarios.md
index a278767a..8fd403c5 100644
--- a/content/ru/_articles/educational/node_red/4_scenarios.md
+++ b/content/ru/_articles/4_scenarios.md
@@ -3,6 +3,5 @@ title: Четыре полезных сценария на Node-RED
url: https://habr.com/ru/companies/wirenboard/articles/689098/
cover: /img/articles/educational/node_red/4_scenarios.jpeg
date: 2022-09-19
-category: educational
-sub_category: node_red
+category: node_red
---
diff --git a/content/ru/_articles/educational/integrations/amazon_with_grafana.md b/content/ru/_articles/amazon_with_grafana.md
similarity index 80%
rename from content/ru/_articles/educational/integrations/amazon_with_grafana.md
rename to content/ru/_articles/amazon_with_grafana.md
index ccbbaf14..9b10f5ef 100644
--- a/content/ru/_articles/educational/integrations/amazon_with_grafana.md
+++ b/content/ru/_articles/amazon_with_grafana.md
@@ -3,6 +3,5 @@ title: Установка Grafana на Amazon WS
url: https://sprut.ai/article/ustanovka-grafana-na-amazon-ws
cover: /img/articles/educational/integrations/amazon_with_grafana.png
date: 2019-03-09
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/hardware_selection/analogs_foreign_hardware.md b/content/ru/_articles/analogs_foreign_hardware.md
similarity index 100%
rename from content/ru/_articles/hardware_selection/analogs_foreign_hardware.md
rename to content/ru/_articles/analogs_foreign_hardware.md
diff --git a/content/ru/_articles/user_experience/business_objects/auto_warehouse.md b/content/ru/_articles/auto_warehouse.md
similarity index 82%
rename from content/ru/_articles/user_experience/business_objects/auto_warehouse.md
rename to content/ru/_articles/auto_warehouse.md
index 070f7786..b9157c6c 100644
--- a/content/ru/_articles/user_experience/business_objects/auto_warehouse.md
+++ b/content/ru/_articles/auto_warehouse.md
@@ -3,6 +3,5 @@ title: 'Склад, авто, аптека: мониторинг условий
url: https://habr.com/ru/companies/wirenboard/articles/769966/
cover: /img/articles/user_experience/business_objects/auto_warehouse.jpg
date: 2023-10-26
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/hardware_selection/automatic_gates.md b/content/ru/_articles/automatic_gates.md
similarity index 100%
rename from content/ru/_articles/hardware_selection/automatic_gates.md
rename to content/ru/_articles/automatic_gates.md
diff --git a/content/ru/_articles/user_experience/home_automation/automating_ventilation.md b/content/ru/_articles/automating_ventilation.md
similarity index 82%
rename from content/ru/_articles/user_experience/home_automation/automating_ventilation.md
rename to content/ru/_articles/automating_ventilation.md
index 82d30879..05ad7bf6 100644
--- a/content/ru/_articles/user_experience/home_automation/automating_ventilation.md
+++ b/content/ru/_articles/automating_ventilation.md
@@ -3,6 +3,5 @@ title: Автоматизируем вентиляцию в квартире п
url: https://habr.com/ru/companies/wirenboard/articles/752132/
cover: /img/articles/user_experience/home_automation/automating_ventilation.jpg
date: 2023-08-03
-category: user_experience
-sub_category: home_automation
+category: home_automation
---
diff --git a/content/ru/_articles/educational/3rd_party_devices/blinds_with_alice.md b/content/ru/_articles/blinds_with_alice.md
similarity index 83%
rename from content/ru/_articles/educational/3rd_party_devices/blinds_with_alice.md
rename to content/ru/_articles/blinds_with_alice.md
index 4a9f95c0..740a20e3 100644
--- a/content/ru/_articles/educational/3rd_party_devices/blinds_with_alice.md
+++ b/content/ru/_articles/blinds_with_alice.md
@@ -3,6 +3,5 @@ title: Подключаем шторы Akko и Dooya к Алисе и Apple Home
url: https://comf.life/podklyuchaem-shtory-k-alise-i-apple-home-privody-akko-dm35eq-x-i-am82tv.html
cover: /img/articles/educational/3rd_party_devices/blinds_with_alice.webp
date: 2023-01-18
-category: educational
-sub_category: 3rd_party_devices
+category: 3rd_party_devices
---
diff --git a/content/ru/_articles/educational/beginners/budget_smart_home.md b/content/ru/_articles/budget_smart_home.md
similarity index 85%
rename from content/ru/_articles/educational/beginners/budget_smart_home.md
rename to content/ru/_articles/budget_smart_home.md
index c054bd36..6169cadd 100644
--- a/content/ru/_articles/educational/beginners/budget_smart_home.md
+++ b/content/ru/_articles/budget_smart_home.md
@@ -3,6 +3,5 @@ title: Как собрать бюджетный умный дом. Общие п
url: https://habr.com/ru/companies/wirenboard/articles/764778/
cover: /img/articles/educational/beginners/budget_smart_home.jpg
date: 2023-10-03
-category: educational
-sub_category: beginners
+category: beginners
---
diff --git a/content/ru/_articles/user_experience/business_objects/city_farm.md b/content/ru/_articles/city_farm.md
similarity index 80%
rename from content/ru/_articles/user_experience/business_objects/city_farm.md
rename to content/ru/_articles/city_farm.md
index 4286dc64..b6b3a802 100644
--- a/content/ru/_articles/user_experience/business_objects/city_farm.md
+++ b/content/ru/_articles/city_farm.md
@@ -3,6 +3,5 @@ title: 'Сити-ферма: майним зелень в подвале'
url: https://habr.com/ru/companies/wirenboard/articles/766876/
cover: /img/articles/user_experience/business_objects/city_farm.jpg
date: 2023-10-12
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/educational/heating/cityron.md b/content/ru/_articles/cityron.md
similarity index 86%
rename from content/ru/_articles/educational/heating/cityron.md
rename to content/ru/_articles/cityron.md
index b52470bd..c198b749 100644
--- a/content/ru/_articles/educational/heating/cityron.md
+++ b/content/ru/_articles/cityron.md
@@ -3,6 +3,5 @@ title: Управление климатом в комнате с панели C
url: https://sprut.ai/article/upravlenie-klimatom-v-komnate-s-radiatornym-otopleniem-pri-pomoshchi-sensornoy-paneli-termostata
cover: /img/articles/educational/heating/cityron.webp
date: 2019-09-24
-category: educational
-sub_category: heating
+category: heating
---
diff --git a/content/ru/_articles/educational/integrations/codesys.md b/content/ru/_articles/codesys.md
similarity index 80%
rename from content/ru/_articles/educational/integrations/codesys.md
rename to content/ru/_articles/codesys.md
index ba177bdd..9b07811b 100644
--- a/content/ru/_articles/educational/integrations/codesys.md
+++ b/content/ru/_articles/codesys.md
@@ -3,6 +3,5 @@ title: Программирование Wiren Board с помощью CODESYS
url: https://wirenboard.com/wiki/CODESYS
cover: /img/articles/educational/integrations/codesys.webp
date: 2022-09-16
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/educational/beginners/dark_room_scenario.md b/content/ru/_articles/dark_room_scenario.md
similarity index 83%
rename from content/ru/_articles/educational/beginners/dark_room_scenario.md
rename to content/ru/_articles/dark_room_scenario.md
index 19e8d264..bb08a1eb 100644
--- a/content/ru/_articles/educational/beginners/dark_room_scenario.md
+++ b/content/ru/_articles/dark_room_scenario.md
@@ -3,7 +3,6 @@ title: Как устроен сценарий «Темная комната»
url: https://comf.life/bolshoj-obzor-scenarij-temnaya-komnata.html
cover: /img/articles/educational/beginners/dark_room_scenario.jpg
date: 2022-08-04
-category: educational
-sub_category: beginners
+category: beginners
---
``
\ No newline at end of file
diff --git a/content/ru/_articles/manufactoring/device_reliability.md b/content/ru/_articles/device_reliability.md
similarity index 100%
rename from content/ru/_articles/manufactoring/device_reliability.md
rename to content/ru/_articles/device_reliability.md
diff --git a/content/ru/_articles/educational/electrics/dimmer_wb_mdm3.md b/content/ru/_articles/dimmer_wb_mdm3.md
similarity index 83%
rename from content/ru/_articles/educational/electrics/dimmer_wb_mdm3.md
rename to content/ru/_articles/dimmer_wb_mdm3.md
index 1e6fc7a9..27084eef 100644
--- a/content/ru/_articles/educational/electrics/dimmer_wb_mdm3.md
+++ b/content/ru/_articles/dimmer_wb_mdm3.md
@@ -3,6 +3,5 @@ title: Краткий обзор диммера WB-MDM3 от Wiren Board
url: https://sprut.ai/article/kratkiy-obzor-dimmera-wb-mdm3-ot-wirenboard
cover: /img/articles/educational/electrics/dimmer_wb_mdm3.webp
date: 2020-01-15
-category: educational
-sub_category: electrics
+category: electrics
---
diff --git a/content/ru/_articles/educational/beginners/electrical_panel.md b/content/ru/_articles/electrical_panel.md
similarity index 84%
rename from content/ru/_articles/educational/beginners/electrical_panel.md
rename to content/ru/_articles/electrical_panel.md
index 1080fa93..edb2af9d 100644
--- a/content/ru/_articles/educational/beginners/electrical_panel.md
+++ b/content/ru/_articles/electrical_panel.md
@@ -3,6 +3,5 @@ title: Сборка электрического щита на Wiren Board 6
url: https://sprut.ai/article/sborka-el-shchita-na-wiren-board-6-v-tom-chisle-silovaya-chast
cover: /img/articles/educational/beginners/electrical_panel.webp
date: 2020-02-18
-category: educational
-sub_category: beginners
+category: beginners
---
diff --git a/content/ru/_articles/manufactoring/embedded_controller.md b/content/ru/_articles/embedded_controller.md
similarity index 100%
rename from content/ru/_articles/manufactoring/embedded_controller.md
rename to content/ru/_articles/embedded_controller.md
diff --git a/content/ru/_articles/user_experience/business_objects/energia_excursion.md b/content/ru/_articles/energia_excursion.md
similarity index 81%
rename from content/ru/_articles/user_experience/business_objects/energia_excursion.md
rename to content/ru/_articles/energia_excursion.md
index 5e86b9a4..feac0286 100644
--- a/content/ru/_articles/user_experience/business_objects/energia_excursion.md
+++ b/content/ru/_articles/energia_excursion.md
@@ -3,6 +3,5 @@ title: Экскурсия на производство ПК «Энергия»
url: https://habr.com/ru/companies/wirenboard/articles/763412/
cover: /img/articles/user_experience/business_objects/energia_excursion.webp
date: 2023-09-26
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/user_experience/embedded/energy_storage_excursion.md b/content/ru/_articles/energy_storage_excursion.md
similarity index 84%
rename from content/ru/_articles/user_experience/embedded/energy_storage_excursion.md
rename to content/ru/_articles/energy_storage_excursion.md
index 0792a51d..2dda1eee 100644
--- a/content/ru/_articles/user_experience/embedded/energy_storage_excursion.md
+++ b/content/ru/_articles/energy_storage_excursion.md
@@ -3,6 +3,5 @@ title: Экскурсия на производство накопителей
url: https://habr.com/ru/companies/wirenboard/articles/743432/
cover: /img/articles/user_experience/embedded/energy_storage_excursion.jpg
date: 2023-06-27
-category: user_experience
-sub_category: embedded
+category: embedded
---
diff --git a/content/ru/_articles/educational/node_red/execution_without_console.md b/content/ru/_articles/execution_without_console.md
similarity index 87%
rename from content/ru/_articles/educational/node_red/execution_without_console.md
rename to content/ru/_articles/execution_without_console.md
index fb3fda45..ff71f3e0 100644
--- a/content/ru/_articles/educational/node_red/execution_without_console.md
+++ b/content/ru/_articles/execution_without_console.md
@@ -3,6 +3,5 @@ title: От распаковки до Node-RED. Автоматизация бе
url: https://sprut.ai/article/ot-raspakovki-do-node-red-mozhno-li-nastroit-avtomatizaciyu-na-wiren-board-7-ne-umerev-v-konsoli
cover: /img/articles/educational/node_red/execution_without_console.png
date: 2022-08-22
-category: educational
-sub_category: node_red
+category: node_red
---
diff --git a/content/ru/_articles/user_experience/business_objects/facility_automation.md b/content/ru/_articles/facility_automation.md
similarity index 81%
rename from content/ru/_articles/user_experience/business_objects/facility_automation.md
rename to content/ru/_articles/facility_automation.md
index b1d1e4e9..e7fa4d92 100644
--- a/content/ru/_articles/user_experience/business_objects/facility_automation.md
+++ b/content/ru/_articles/facility_automation.md
@@ -3,6 +3,5 @@ title: Автоматизация инженерных систем клиник
url: https://habr.com/ru/companies/wirenboard/articles/793790/
cover: /img/articles/user_experience/business_objects/facility_automation.webp
date: 2024-02-15
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/educational/heating/floor_heating.md b/content/ru/_articles/floor_heating.md
similarity index 83%
rename from content/ru/_articles/educational/heating/floor_heating.md
rename to content/ru/_articles/floor_heating.md
index 1b076cdb..c753779c 100644
--- a/content/ru/_articles/educational/heating/floor_heating.md
+++ b/content/ru/_articles/floor_heating.md
@@ -3,6 +3,5 @@ title: Управление электрическим теплым полом
url: https://dzen.ru/a/YMjxpvZDS3QA0t9y
cover: /img/articles/educational/heating/floor_heating.jpg
date: 2021-06-16
-category: educational
-sub_category: heating
+category: heating
---
diff --git a/content/ru/_articles/user_experience/apartments/frist_smart_boolichev.md b/content/ru/_articles/frist_smart_boolichev.md
similarity index 83%
rename from content/ru/_articles/user_experience/apartments/frist_smart_boolichev.md
rename to content/ru/_articles/frist_smart_boolichev.md
index 923f484e..ac8378a9 100644
--- a/content/ru/_articles/user_experience/apartments/frist_smart_boolichev.md
+++ b/content/ru/_articles/frist_smart_boolichev.md
@@ -3,6 +3,5 @@ title: Первый умный дом класса А в России «Булы
url: https://wirenboard.com/ru/pages/interview-zhelezno-bulychev/
cover: /img/articles/user_experience/apartments/frist_smart_boolichev.jpg
date: 2022-10-21
-category: user_experience
-sub_category: apartments
+category: apartments
---
diff --git a/content/ru/_articles/educational/beginners/from_aqara_to_wb.md b/content/ru/_articles/from_aqara_to_wb.md
similarity index 84%
rename from content/ru/_articles/educational/beginners/from_aqara_to_wb.md
rename to content/ru/_articles/from_aqara_to_wb.md
index 0bfee455..ac9be407 100644
--- a/content/ru/_articles/educational/beginners/from_aqara_to_wb.md
+++ b/content/ru/_articles/from_aqara_to_wb.md
@@ -3,6 +3,5 @@ title: Слезаем с облачной иглы Aqara и подключаем
url: https://habr.com/ru/companies/wirenboard/articles/710177/
cover: /img/articles/educational/beginners/from_aqara_to_wb.jpg
date: 2023-01-12
-category: educational
-sub_category: beginners
+category: beginners
---
diff --git a/content/ru/_articles/educational/integrations/google_home_kit.md b/content/ru/_articles/google_home_kit.md
similarity index 81%
rename from content/ru/_articles/educational/integrations/google_home_kit.md
rename to content/ru/_articles/google_home_kit.md
index b4d51ab8..7ea1f169 100644
--- a/content/ru/_articles/educational/integrations/google_home_kit.md
+++ b/content/ru/_articles/google_home_kit.md
@@ -3,6 +3,5 @@ title: Добавляем Google Home в Wiren Board
url: https://sprut.ai/article/dobavlyaem-google-home-v-wirenboard
cover: /img/articles/educational/integrations/google_home_kit.png
date: 2020-12-21
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/educational/integrations/grafana.md b/content/ru/_articles/grafana.md
similarity index 80%
rename from content/ru/_articles/educational/integrations/grafana.md
rename to content/ru/_articles/grafana.md
index 3147af30..6892613d 100644
--- a/content/ru/_articles/educational/integrations/grafana.md
+++ b/content/ru/_articles/grafana.md
@@ -3,6 +3,5 @@ title: Использование Grafana с контроллером Wiren Boar
url: https://wirenboard.com/wiki/Grafana
cover: /img/articles/educational/integrations/grafana.png
date: 2021-11-25
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/user_experience/home_automation/gree_air_condition.md b/content/ru/_articles/gree_air_condition.md
similarity index 83%
rename from content/ru/_articles/user_experience/home_automation/gree_air_condition.md
rename to content/ru/_articles/gree_air_condition.md
index c0171de3..9723e38d 100644
--- a/content/ru/_articles/user_experience/home_automation/gree_air_condition.md
+++ b/content/ru/_articles/gree_air_condition.md
@@ -3,6 +3,5 @@ title: Интеграция кондиционера GREE с Wiren Board + Home
url: https://sprut.ai/article/integraciya-kondicionera-gree-s-wirenboard-home-assistant
cover: /img/articles/user_experience/home_automation/gree_air_condition.png
date: 2023-07-05
-category: user_experience
-sub_category: home_automation
+category: home_automation
---
diff --git a/content/ru/_articles/user_experience/business_objects/greenhouse_automating.md b/content/ru/_articles/greenhouse_automating.md
similarity index 83%
rename from content/ru/_articles/user_experience/business_objects/greenhouse_automating.md
rename to content/ru/_articles/greenhouse_automating.md
index 43643594..8a1900ae 100644
--- a/content/ru/_articles/user_experience/business_objects/greenhouse_automating.md
+++ b/content/ru/_articles/greenhouse_automating.md
@@ -3,6 +3,5 @@ title: 'Склад, авто, аптека: мониторинг условий
url: https://habr.com/ru/companies/wirenboard/articles/695752/
cover: /img/articles/user_experience/business_objects/greenhouse_automating.webp
date: 2022-10-27
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/educational/beginners/hardware_selection.md b/content/ru/_articles/hardware_selection.md
similarity index 85%
rename from content/ru/_articles/educational/beginners/hardware_selection.md
rename to content/ru/_articles/hardware_selection.md
index febaa6cd..a4c2e6a7 100644
--- a/content/ru/_articles/educational/beginners/hardware_selection.md
+++ b/content/ru/_articles/hardware_selection.md
@@ -3,7 +3,6 @@ title: Подбор оборудования Wiren Board и проектиров
url: https://home-matic.ru/2020/09/wirenboard_podbor_oborudovania/
cover: /img/articles/educational/beginners/hardware_selection.jpg
date: 2020-09-04
-category: educational
-sub_category: beginners
+category: beginners
---
``
\ No newline at end of file
diff --git a/content/ru/_articles/educational/ventilation/ventilation_control.md b/content/ru/_articles/heating_ventilation_control.md
similarity index 83%
rename from content/ru/_articles/educational/ventilation/ventilation_control.md
rename to content/ru/_articles/heating_ventilation_control.md
index da61c3fd..c89a5fc2 100644
--- a/content/ru/_articles/educational/ventilation/ventilation_control.md
+++ b/content/ru/_articles/heating_ventilation_control.md
@@ -3,6 +3,5 @@ title: Управление вентиляцией. Электронагрев
url: https://habr.com/ru/companies/wirenboard/articles/705900/
cover: /img/articles/educational/ventilation/ventilation_control.png
date: 2022-12-22
-category: educational
-sub_category: ventilation
+category: ventilation
---
diff --git a/content/ru/_articles/educational/beginners/hmi_from_tablet.md b/content/ru/_articles/hmi_from_tablet.md
similarity index 84%
rename from content/ru/_articles/educational/beginners/hmi_from_tablet.md
rename to content/ru/_articles/hmi_from_tablet.md
index fc0a94d9..2e45334a 100644
--- a/content/ru/_articles/educational/beginners/hmi_from_tablet.md
+++ b/content/ru/_articles/hmi_from_tablet.md
@@ -3,6 +3,5 @@ title: Делаем HMI-панель из планшета для системы
url: https://habr.com/ru/companies/wirenboard/articles/765232/
cover: /img/articles/educational/beginners/hmi_from_tablet.jpg
date: 2023-10-10
-category: educational
-sub_category: beginners
+category: beginners
---
diff --git a/content/ru/_articles/educational/integrations/home_assistant.md b/content/ru/_articles/home_assistant.md
similarity index 81%
rename from content/ru/_articles/educational/integrations/home_assistant.md
rename to content/ru/_articles/home_assistant.md
index 3b6702a4..85a97a75 100644
--- a/content/ru/_articles/educational/integrations/home_assistant.md
+++ b/content/ru/_articles/home_assistant.md
@@ -3,6 +3,5 @@ title: Установка Home Assistant на контроллер Wiren Board
url: https://wirenboard.com/wiki/Home_Assistant
cover: /img/articles/educational/integrations/home_assistant.png
date: 2022-04-14
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/user_experience/retail/horek.md b/content/ru/_articles/horek.md
similarity index 84%
rename from content/ru/_articles/user_experience/retail/horek.md
rename to content/ru/_articles/horek.md
index 2e1e6d49..70644207 100644
--- a/content/ru/_articles/user_experience/retail/horek.md
+++ b/content/ru/_articles/horek.md
@@ -3,6 +3,5 @@ title: Как платить меньше за энергоресурсы в р
url: https://habr.com/ru/companies/wirenboard/articles/744638/
cover: /img/articles/user_experience/retail/horek.jpg
date: 2023-06-29
-category: user_experience
-sub_category: retail
+category: retail
---
diff --git a/content/ru/_articles/manufactoring/how_we_invented_bike.md b/content/ru/_articles/how_we_invented_bike.md
similarity index 100%
rename from content/ru/_articles/manufactoring/how_we_invented_bike.md
rename to content/ru/_articles/how_we_invented_bike.md
diff --git a/content/ru/_articles/manufactoring/how_we_test_devices.md b/content/ru/_articles/how_we_test_devices.md
similarity index 100%
rename from content/ru/_articles/manufactoring/how_we_test_devices.md
rename to content/ru/_articles/how_we_test_devices.md
diff --git a/content/ru/_articles/user_experience/tsod/howto_monitoring.md b/content/ru/_articles/howto_monitoring.md
similarity index 85%
rename from content/ru/_articles/user_experience/tsod/howto_monitoring.md
rename to content/ru/_articles/howto_monitoring.md
index d9d34d21..83a26add 100644
--- a/content/ru/_articles/user_experience/tsod/howto_monitoring.md
+++ b/content/ru/_articles/howto_monitoring.md
@@ -3,6 +3,5 @@ title: Как сделать мониторинг инженерной инфр
url: https://habr.com/ru/companies/wirenboard/articles/734054/
cover: /img/articles/user_experience/tsod/howto_monitoring.jpg
date: 2023-05-10
-category: user_experience
-sub_category: tsod
+category: tsod
---
diff --git a/content/ru/_articles/user_experience/embedded/industrial_disinfection.md b/content/ru/_articles/industrial_disinfection.md
similarity index 84%
rename from content/ru/_articles/user_experience/embedded/industrial_disinfection.md
rename to content/ru/_articles/industrial_disinfection.md
index 18521770..b04b2143 100644
--- a/content/ru/_articles/user_experience/embedded/industrial_disinfection.md
+++ b/content/ru/_articles/industrial_disinfection.md
@@ -3,6 +3,5 @@ title: Автоматическая дезинфекция помещений п
url: https://habr.com/ru/companies/wirenboard/articles/775226/
cover: /img/articles/user_experience/embedded/industrial_disinfection.jpg
date: 2023-11-21
-category: user_experience
-sub_category: embedded
+category: embedded
---
diff --git a/content/ru/_articles/educational/integrations/intrahouse.md b/content/ru/_articles/intrahouse.md
similarity index 81%
rename from content/ru/_articles/educational/integrations/intrahouse.md
rename to content/ru/_articles/intrahouse.md
index a373e895..472b5436 100644
--- a/content/ru/_articles/educational/integrations/intrahouse.md
+++ b/content/ru/_articles/intrahouse.md
@@ -3,6 +3,5 @@ title: Использование IntraHouse с контроллером Wiren B
url: https://wirenboard.com/wiki/IntraHouse
cover: /img/articles/educational/integrations/intrahouse.webp
date: 2022-01-19
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/educational/integrations/intrascada.md b/content/ru/_articles/intrascada.md
similarity index 81%
rename from content/ru/_articles/educational/integrations/intrascada.md
rename to content/ru/_articles/intrascada.md
index 05dcda00..c6f8dd0d 100644
--- a/content/ru/_articles/educational/integrations/intrascada.md
+++ b/content/ru/_articles/intrascada.md
@@ -3,6 +3,5 @@ title: Использование IntraSCADA с контроллером Wiren B
url: https://wirenboard.com/wiki/IntraSCADA
cover: /img/articles/educational/integrations/intrascada.webp
date: 2022-05-10
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/manufactoring/ionistores.md b/content/ru/_articles/ionistores.md
similarity index 100%
rename from content/ru/_articles/manufactoring/ionistores.md
rename to content/ru/_articles/ionistores.md
diff --git a/content/ru/_articles/user_experience/apartments/kreen.md b/content/ru/_articles/kreen.md
similarity index 82%
rename from content/ru/_articles/user_experience/apartments/kreen.md
rename to content/ru/_articles/kreen.md
index 75562607..da5470b0 100644
--- a/content/ru/_articles/user_experience/apartments/kreen.md
+++ b/content/ru/_articles/kreen.md
@@ -3,6 +3,5 @@ title: «Крин» – экскурсия в умный многокварти
url: https://habr.com/ru/companies/wirenboard/articles/709080/
cover: /img/articles/user_experience/apartments/kreen.jpeg
date: 2023-01-05
-category: user_experience
-sub_category: apartments
+category: apartments
---
diff --git a/content/ru/_articles/hardware_selection/leakage_protection.md b/content/ru/_articles/leakage_protection.md
similarity index 100%
rename from content/ru/_articles/hardware_selection/leakage_protection.md
rename to content/ru/_articles/leakage_protection.md
diff --git a/content/ru/_articles/educational/3rd_party_devices/leaving_from_aqara.md b/content/ru/_articles/leaving_from_aqara.md
similarity index 83%
rename from content/ru/_articles/educational/3rd_party_devices/leaving_from_aqara.md
rename to content/ru/_articles/leaving_from_aqara.md
index 1088efe4..7ad687af 100644
--- a/content/ru/_articles/educational/3rd_party_devices/leaving_from_aqara.md
+++ b/content/ru/_articles/leaving_from_aqara.md
@@ -3,6 +3,5 @@ title: Слезаем с облачной иглы Aqara и подключаем
url: https://habr.com/ru/companies/wirenboard/articles/710177/
cover: /img/articles/educational/3rd_party_devices/leaving_from_aqara.jpg
date: 2023-01-12
-category: educational
-sub_category: 3rd_party_devices
+category: 3rd_party_devices
---
diff --git a/content/ru/_articles/hardware_selection/lighting_automation.md b/content/ru/_articles/lighting_automation.md
similarity index 100%
rename from content/ru/_articles/hardware_selection/lighting_automation.md
rename to content/ru/_articles/lighting_automation.md
diff --git a/content/ru/_articles/user_experience/retail/magnit.md b/content/ru/_articles/magnit.md
similarity index 85%
rename from content/ru/_articles/user_experience/retail/magnit.md
rename to content/ru/_articles/magnit.md
index be7ec386..0ac9e4a4 100644
--- a/content/ru/_articles/user_experience/retail/magnit.md
+++ b/content/ru/_articles/magnit.md
@@ -3,6 +3,5 @@ title: Цифровизация продуктового ритейла на п
url: https://habr.com/ru/companies/wirenboard/articles/722656/
cover: /img/articles/user_experience/retail/magnit.webp
date: 2023-03-16
-category: user_experience
-sub_category: retail
+category: retail
---
diff --git a/content/ru/_articles/educational/3rd_party_devices/meteo_fishing.md b/content/ru/_articles/meteo_fishing.md
similarity index 83%
rename from content/ru/_articles/educational/3rd_party_devices/meteo_fishing.md
rename to content/ru/_articles/meteo_fishing.md
index 361748dc..ecc038e3 100644
--- a/content/ru/_articles/educational/3rd_party_devices/meteo_fishing.md
+++ b/content/ru/_articles/meteo_fishing.md
@@ -3,6 +3,5 @@ title: 'Рыбачим в эфире: метеостанция, номер бо
url: https://habr.com/ru/companies/wirenboard/articles/793268/
cover: /img/articles/educational/3rd_party_devices/meteo_fishing.jpg
date: 2024-02-13
-category: educational
-sub_category: 3rd_party_devices
+category: 3rd_party_devices
---
diff --git a/content/ru/_articles/educational/heating/meteo_with_nodered.md b/content/ru/_articles/meteo_with_nodered.md
similarity index 85%
rename from content/ru/_articles/educational/heating/meteo_with_nodered.md
rename to content/ru/_articles/meteo_with_nodered.md
index 476ee49f..82f1804f 100644
--- a/content/ru/_articles/educational/heating/meteo_with_nodered.md
+++ b/content/ru/_articles/meteo_with_nodered.md
@@ -3,6 +3,5 @@ title: Погодозависимое управление c помощью Node
url: https://sprut.ai/article/otoplenie-pod-kontrolem-pogodozavisimoe-upravlenie
cover: /img/articles/educational/heating/meteo_with_nodered.png
date: 2020-03-29
-category: educational
-sub_category: heating
+category: heating
---
diff --git a/content/ru/_articles/manufactoring/modbus_upgrade.md b/content/ru/_articles/modbus_upgrade.md
similarity index 100%
rename from content/ru/_articles/manufactoring/modbus_upgrade.md
rename to content/ru/_articles/modbus_upgrade.md
diff --git a/content/ru/_articles/user_experience/home_automation/modular_smart_home.md b/content/ru/_articles/modular_smart_home.md
similarity index 83%
rename from content/ru/_articles/user_experience/home_automation/modular_smart_home.md
rename to content/ru/_articles/modular_smart_home.md
index ad76f304..96ed8dff 100644
--- a/content/ru/_articles/user_experience/home_automation/modular_smart_home.md
+++ b/content/ru/_articles/modular_smart_home.md
@@ -3,6 +3,5 @@ title: 'Купил, привез, поставил: экскурсия по мо
url: https://habr.com/ru/companies/wirenboard/articles/739454/
cover: /img/articles/user_experience/home_automation/gree_air_condition.jpg
date: 2023-06-02
-category: user_experience
-sub_category: home_automation
+category: home_automation
---
diff --git a/content/ru/_articles/hardware_selection/monitoring_automation.md b/content/ru/_articles/monitoring_automation.md
similarity index 100%
rename from content/ru/_articles/hardware_selection/monitoring_automation.md
rename to content/ru/_articles/monitoring_automation.md
diff --git a/content/ru/_articles/user_experience/business_objects/move_from_siemens.md b/content/ru/_articles/move_from_siemens.md
similarity index 81%
rename from content/ru/_articles/user_experience/business_objects/move_from_siemens.md
rename to content/ru/_articles/move_from_siemens.md
index d091cffc..49498f8f 100644
--- a/content/ru/_articles/user_experience/business_objects/move_from_siemens.md
+++ b/content/ru/_articles/move_from_siemens.md
@@ -3,6 +3,5 @@ title: 'Слезаем с иглы Siemens: промышленная венти
url: https://habr.com/ru/companies/wirenboard/articles/762422/
cover: /img/articles/user_experience/business_objects/move_from_siemens.png
date: 2023-09-21
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/educational/integrations/node_red.md b/content/ru/_articles/node_red.md
similarity index 80%
rename from content/ru/_articles/educational/integrations/node_red.md
rename to content/ru/_articles/node_red.md
index 2d310fb2..b15b8a0b 100644
--- a/content/ru/_articles/educational/integrations/node_red.md
+++ b/content/ru/_articles/node_red.md
@@ -3,6 +3,5 @@ title: Установка Node-RED на контроллер Wiren Board
url: https://wirenboard.com/wiki/Node-RED
cover: /img/articles/educational/integrations/node_red.png
date: 2022-08-05
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/user_experience/tsod/noninvasive_monitoring.md b/content/ru/_articles/noninvasive_monitoring.md
similarity index 85%
rename from content/ru/_articles/user_experience/tsod/noninvasive_monitoring.md
rename to content/ru/_articles/noninvasive_monitoring.md
index 42f740c0..e5c97f55 100644
--- a/content/ru/_articles/user_experience/tsod/noninvasive_monitoring.md
+++ b/content/ru/_articles/noninvasive_monitoring.md
@@ -3,6 +3,5 @@ title: 'Неинвазивный мониторинг ЦОД: надёжност
url: https://habr.com/ru/companies/wirenboard/articles/785592/
cover: /img/articles/user_experience/tsod/noninvasive_monitoring.webp
date: 2024-01-11
-category: user_experience
-sub_category: tsod
+category: tsod
---
diff --git a/content/ru/_articles/user_experience/business_objects/office_automation.md b/content/ru/_articles/office_automation.md
similarity index 80%
rename from content/ru/_articles/user_experience/business_objects/office_automation.md
rename to content/ru/_articles/office_automation.md
index bd1600fe..abc38ab4 100644
--- a/content/ru/_articles/user_experience/business_objects/office_automation.md
+++ b/content/ru/_articles/office_automation.md
@@ -3,6 +3,5 @@ title: Автоматизация офисного пространства
url: https://habr.com/ru/companies/wirenboard/articles/783118/
cover: /img/articles/user_experience/business_objects/office_automation.webp
date: 2023-12-26
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/educational/heating/opentherm.md b/content/ru/_articles/opentherm.md
similarity index 86%
rename from content/ru/_articles/educational/heating/opentherm.md
rename to content/ru/_articles/opentherm.md
index 6f5218bb..0817336f 100644
--- a/content/ru/_articles/educational/heating/opentherm.md
+++ b/content/ru/_articles/opentherm.md
@@ -3,6 +3,5 @@ title: Обзор модулей OpenTherm и eBus для контроллера
url: https://sprut.ai/article/otoplenie-pod-kontrolem-moduli-rasshireniya-wiren-board-s-interfeysom-opentherm-i-ebus
cover: /img/articles/educational/heating/opentherm.webp
date: 2021-07-13
-category: educational
-sub_category: heating
+category: heating
---
diff --git a/content/ru/_articles/manufactoring/qt18b20.md b/content/ru/_articles/qt18b20.md
similarity index 100%
rename from content/ru/_articles/manufactoring/qt18b20.md
rename to content/ru/_articles/qt18b20.md
diff --git a/content/ru/_articles/educational/integrations/rapidscada.md b/content/ru/_articles/rapidscada.md
similarity index 80%
rename from content/ru/_articles/educational/integrations/rapidscada.md
rename to content/ru/_articles/rapidscada.md
index 47fc50aa..910c1ad4 100644
--- a/content/ru/_articles/educational/integrations/rapidscada.md
+++ b/content/ru/_articles/rapidscada.md
@@ -3,6 +3,5 @@ title: Установка Rapid SCADA на контроллер Wiren Board
url: https://wirenboard.com/wiki/Rapid_SCADA
cover: /img/articles/educational/integrations/rapidscada.png
date: 2022-06-02
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/user_experience/home_automation/raspberry_pi.md b/content/ru/_articles/raspberry_pi.md
similarity index 80%
rename from content/ru/_articles/user_experience/home_automation/raspberry_pi.md
rename to content/ru/_articles/raspberry_pi.md
index 842086c7..4a852c4c 100644
--- a/content/ru/_articles/user_experience/home_automation/raspberry_pi.md
+++ b/content/ru/_articles/raspberry_pi.md
@@ -3,6 +3,5 @@ title: Умный дом на Raspberry Pi, Home Assistant и Wiren Board
url: https://habr.com/ru/companies/wirenboard/articles/770882/
cover: /img/articles/user_experience/home_automation/raspberry_pi.webp
date: 2023-10-31
-category: user_experience
-sub_category: home_automation
+category: home_automation
---
diff --git a/content/ru/_articles/educational/3rd_party_devices/redmond_teapot.md b/content/ru/_articles/redmond_teapot.md
similarity index 81%
rename from content/ru/_articles/educational/3rd_party_devices/redmond_teapot.md
rename to content/ru/_articles/redmond_teapot.md
index 84bf8240..640e3599 100644
--- a/content/ru/_articles/educational/3rd_party_devices/redmond_teapot.md
+++ b/content/ru/_articles/redmond_teapot.md
@@ -3,6 +3,5 @@ title: Путь от глупого чайника Redmond к умному
url: https://sprut.ai/article/put-ot-glupogo-chaynika-k-umnomu-redmond
cover: /img/articles/educational/3rd_party_devices/redmond_teapot.png
date: 2022-10-31
-category: educational
-sub_category: 3rd_party_devices
+category: 3rd_party_devices
---
diff --git a/content/ru/_articles/user_experience/retail/restaurants_upgrade.md b/content/ru/_articles/restaurants_upgrade.md
similarity index 85%
rename from content/ru/_articles/user_experience/retail/restaurants_upgrade.md
rename to content/ru/_articles/restaurants_upgrade.md
index f7949fe3..6537df86 100644
--- a/content/ru/_articles/user_experience/retail/restaurants_upgrade.md
+++ b/content/ru/_articles/restaurants_upgrade.md
@@ -3,6 +3,5 @@ title: 'Апгрейд ресторанов и кафе: камера дефро
url: https://habr.com/ru/companies/wirenboard/articles/797013/
cover: /img/articles/user_experience/retail/restaurants_upgrade.webp
date: 2024-02-29
-category: user_experience
-sub_category: retail
+category: retail
---
diff --git a/content/ru/_articles/user_experience/retail/rostics.md b/content/ru/_articles/rostics.md
similarity index 83%
rename from content/ru/_articles/user_experience/retail/rostics.md
rename to content/ru/_articles/rostics.md
index 08137f68..643db99d 100644
--- a/content/ru/_articles/user_experience/retail/rostics.md
+++ b/content/ru/_articles/rostics.md
@@ -3,6 +3,5 @@ title: Как и зачем Rostic’s внедряет телеметрию р
url: https://habr.com/ru/companies/wirenboard/articles/732018/
cover: /img/articles/user_experience/retail/rostics.webp
date: 2023-04-27
-category: user_experience
-sub_category: retail
+category: retail
---
diff --git a/content/ru/_articles/user_experience/business_objects/sauna_automation.md b/content/ru/_articles/sauna_automation.md
similarity index 82%
rename from content/ru/_articles/user_experience/business_objects/sauna_automation.md
rename to content/ru/_articles/sauna_automation.md
index fbc8e6c6..0685da67 100644
--- a/content/ru/_articles/user_experience/business_objects/sauna_automation.md
+++ b/content/ru/_articles/sauna_automation.md
@@ -3,6 +3,5 @@ title: 'Автоматизация бань и терм: как задержат
url: https://habr.com/ru/companies/wirenboard/articles/778954/
cover: /img/articles/user_experience/business_objects/sauna_automation.jpg
date: 2023-12-07
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/educational/beginners/sensors_placement.md b/content/ru/_articles/sensors_placement.md
similarity index 84%
rename from content/ru/_articles/educational/beginners/sensors_placement.md
rename to content/ru/_articles/sensors_placement.md
index bc2f1bcd..15a0b1bf 100644
--- a/content/ru/_articles/educational/beginners/sensors_placement.md
+++ b/content/ru/_articles/sensors_placement.md
@@ -3,7 +3,6 @@ title: Как расположить датчики Wiren Board WB-MSW v.3
url: https://comf.life/bolshoj-obzor-kak-raspolozhit-datchiki-v-dvuhetazhnom-dome.html
cover: /img/articles/educational/beginners/sensors_placement.jpg
date: 2022-08-19
-category: educational
-sub_category: beginners
+category: beginners
---
``
\ No newline at end of file
diff --git a/content/ru/_articles/user_experience/apartments/smart_boolichev.md b/content/ru/_articles/smart_boolichev.md
similarity index 82%
rename from content/ru/_articles/user_experience/apartments/smart_boolichev.md
rename to content/ru/_articles/smart_boolichev.md
index 052d113c..c65bd2b9 100644
--- a/content/ru/_articles/user_experience/apartments/smart_boolichev.md
+++ b/content/ru/_articles/smart_boolichev.md
@@ -3,6 +3,5 @@ title: 'Умный МКД «Булычев»: первое знакомство'
url: https://habr.com/ru/companies/wirenboard/articles/791612/
cover: /img/articles/user_experience/apartments/smart_boolichev.jpeg
date: 2024-02-06
-category: user_experience
-sub_category: apartments
+category: apartments
---
diff --git a/content/ru/_articles/user_experience/home_automation/smart_cottage.md b/content/ru/_articles/smart_cottage.md
similarity index 80%
rename from content/ru/_articles/user_experience/home_automation/smart_cottage.md
rename to content/ru/_articles/smart_cottage.md
index 044a4f08..f2e05b28 100644
--- a/content/ru/_articles/user_experience/home_automation/smart_cottage.md
+++ b/content/ru/_articles/smart_cottage.md
@@ -3,6 +3,5 @@ title: Умный коттедж на Home Assistant и Wiren Board
url: https://habr.com/ru/companies/wirenboard/articles/789948/
cover: /img/articles/user_experience/home_automation/smart_cottage.jpg
date: 2024-01-30
-category: user_experience
-sub_category: home_automation
+category: home_automation
---
diff --git a/content/ru/_articles/educational/electrics/smart_electrics.md b/content/ru/_articles/smart_electrics.md
similarity index 82%
rename from content/ru/_articles/educational/electrics/smart_electrics.md
rename to content/ru/_articles/smart_electrics.md
index 536199e4..2b710112 100644
--- a/content/ru/_articles/educational/electrics/smart_electrics.md
+++ b/content/ru/_articles/smart_electrics.md
@@ -3,6 +3,5 @@ title: От классической до умной электрики один
url: https://dzen.ru/a/ZUygiho-bwcqttaU
cover: /img/articles/educational/electrics/smart_electrics.png
date: 2023-11-09
-category: educational
-sub_category: electrics
+category: electrics
---
diff --git a/content/ru/_articles/educational/beginners/smart_home_base_knowledge.md b/content/ru/_articles/smart_home_base_knowledge.md
similarity index 85%
rename from content/ru/_articles/educational/beginners/smart_home_base_knowledge.md
rename to content/ru/_articles/smart_home_base_knowledge.md
index 6783ea51..2d367dde 100644
--- a/content/ru/_articles/educational/beginners/smart_home_base_knowledge.md
+++ b/content/ru/_articles/smart_home_base_knowledge.md
@@ -3,6 +3,5 @@ title: 'Облачный умный дом: что нужно знать, что
url: https://habr.com/ru/companies/wirenboard/articles/707678/
cover: /img/articles/educational/beginners/smart_home_base_knowledge.webp
date: 2022-12-27
-category: educational
-sub_category: beginners
+category: beginners
---
diff --git a/content/ru/_articles/hardware_selection/smart_home_design_principles.md b/content/ru/_articles/smart_home_design_principles.md
similarity index 100%
rename from content/ru/_articles/hardware_selection/smart_home_design_principles.md
rename to content/ru/_articles/smart_home_design_principles.md
diff --git a/content/ru/_articles/educational/beginners/smart_home_instruction.md b/content/ru/_articles/smart_home_instruction.md
similarity index 83%
rename from content/ru/_articles/educational/beginners/smart_home_instruction.md
rename to content/ru/_articles/smart_home_instruction.md
index 37c64eba..97a69f87 100644
--- a/content/ru/_articles/educational/beginners/smart_home_instruction.md
+++ b/content/ru/_articles/smart_home_instruction.md
@@ -3,6 +3,5 @@ title: Инструкция по первой настройке УД
url: https://home-matic.ru/2020/09/wirenboard-first-manual/
cover: /img/articles/educational/beginners/smart_home_instruction.jpg
date: 2022-01-10
-category: educational
-sub_category: beginners
+category: beginners
---
diff --git a/content/ru/_articles/educational/electrics/smart_light.md b/content/ru/_articles/smart_light.md
similarity index 83%
rename from content/ru/_articles/educational/electrics/smart_light.md
rename to content/ru/_articles/smart_light.md
index 1769700d..baf8dc38 100644
--- a/content/ru/_articles/educational/electrics/smart_light.md
+++ b/content/ru/_articles/smart_light.md
@@ -3,6 +3,5 @@ title: Умный свет в Wiren Board. Варианты реализаций
url: https://sprut.ai/article/umnyy-svet-v-wirenboard-varianty-realizaciy
cover: /img/articles/educational/electrics/smart_light.png
date: 2019-08-25
-category: educational
-sub_category: electrics
+category: electrics
---
diff --git a/content/ru/_articles/user_experience/business_objects/smart_meatplant.md b/content/ru/_articles/smart_meatplant.md
similarity index 83%
rename from content/ru/_articles/user_experience/business_objects/smart_meatplant.md
rename to content/ru/_articles/smart_meatplant.md
index 3e2d9148..c489ee2d 100644
--- a/content/ru/_articles/user_experience/business_objects/smart_meatplant.md
+++ b/content/ru/_articles/smart_meatplant.md
@@ -3,6 +3,5 @@ title: 'Умный мясокомбинат: что можно сделать с
url: https://habr.com/ru/companies/wirenboard/articles/772122/
cover: /img/articles/user_experience/business_objects/smart_meatplant.jpg
date: 2023-11-07
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/user_experience/business_objects/smart_office.md b/content/ru/_articles/smart_office.md
similarity index 80%
rename from content/ru/_articles/user_experience/business_objects/smart_office.md
rename to content/ru/_articles/smart_office.md
index 937112e9..bd6debdc 100644
--- a/content/ru/_articles/user_experience/business_objects/smart_office.md
+++ b/content/ru/_articles/smart_office.md
@@ -3,6 +3,5 @@ title: Умный офис в «Москва-Сити» на Home Assistant
url: https://habr.com/ru/companies/wirenboard/articles/801175/
cover: /img/articles/user_experience/business_objects/smart_office.webp
date: 2024-03-19
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/user_experience/retail/smart_restaurant.md b/content/ru/_articles/smart_restaurant.md
similarity index 84%
rename from content/ru/_articles/user_experience/retail/smart_restaurant.md
rename to content/ru/_articles/smart_restaurant.md
index 6db095c1..fa62dd32 100644
--- a/content/ru/_articles/user_experience/retail/smart_restaurant.md
+++ b/content/ru/_articles/smart_restaurant.md
@@ -3,6 +3,5 @@ title: 'Умный модульный ресторан: привез, поста
url: https://habr.com/ru/companies/wirenboard/articles/793790/
cover: /img/articles/user_experience/retail/smart_restaurant.jpg
date: 2023-11-14
-category: user_experience
-sub_category: retail
+category: retail
---
diff --git a/content/ru/_articles/user_experience/business_objects/smart_sauna.md b/content/ru/_articles/smart_sauna.md
similarity index 80%
rename from content/ru/_articles/user_experience/business_objects/smart_sauna.md
rename to content/ru/_articles/smart_sauna.md
index a71c2ec1..718e8473 100644
--- a/content/ru/_articles/user_experience/business_objects/smart_sauna.md
+++ b/content/ru/_articles/smart_sauna.md
@@ -3,6 +3,5 @@ title: Умная баня — пар, свет и вентиляция
url: https://habr.com/ru/companies/wirenboard/articles/728720/
cover: /img/articles/user_experience/business_objects/smart_sauna.webp
date: 2023-04-13
-category: user_experience
-sub_category: business_objects
+category: business_objects
---
diff --git a/content/ru/_articles/manufactoring/soldering_robot.md b/content/ru/_articles/soldering_robot.md
similarity index 100%
rename from content/ru/_articles/manufactoring/soldering_robot.md
rename to content/ru/_articles/soldering_robot.md
diff --git a/content/ru/_articles/educational/integrations/spruthub.md b/content/ru/_articles/spruthub.md
similarity index 82%
rename from content/ru/_articles/educational/integrations/spruthub.md
rename to content/ru/_articles/spruthub.md
index b3421719..f38ccb7a 100644
--- a/content/ru/_articles/educational/integrations/spruthub.md
+++ b/content/ru/_articles/spruthub.md
@@ -3,6 +3,5 @@ title: Sprut.hub — российский софт для умного дома
url: https://habr.com/ru/companies/wirenboard/articles/692754/
cover: /img/articles/educational/integrations/spruthub.png
date: 2022-10-12
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/educational/electrics/switcher_downgrade.md b/content/ru/_articles/switcher_downgrade.md
similarity index 84%
rename from content/ru/_articles/educational/electrics/switcher_downgrade.md
rename to content/ru/_articles/switcher_downgrade.md
index 542c491e..ca7cec12 100644
--- a/content/ru/_articles/educational/electrics/switcher_downgrade.md
+++ b/content/ru/_articles/switcher_downgrade.md
@@ -3,6 +3,5 @@ title: Даунгрейд выключателя Aqara под Wiren Board
url: https://sprut.ai/article/daungreyd-vyklyuchatelya-aqara-pod-wirenboard
cover: /img/articles/educational/electrics/switcher_downgrade.webp
date: 2020-01-16
-category: educational
-sub_category: electrics
+category: electrics
---
diff --git a/content/ru/_articles/educational/beginners/switchers_overview.md b/content/ru/_articles/switchers_overview.md
similarity index 84%
rename from content/ru/_articles/educational/beginners/switchers_overview.md
rename to content/ru/_articles/switchers_overview.md
index 04389045..4e0641c1 100644
--- a/content/ru/_articles/educational/beginners/switchers_overview.md
+++ b/content/ru/_articles/switchers_overview.md
@@ -3,7 +3,6 @@ title: Большой обзор выключателей в умном доме
url: https://comf.life/bolshoj-obzor-vyklyuchateli-v-umnom-dome.html
cover: /img/articles/educational/beginners/switchers_overview.jpg
date: 2023-01-13
-category: educational
-sub_category: beginners
+category: beginners
---
``
\ No newline at end of file
diff --git a/content/ru/_articles/educational/node_red/telegram_bot.md b/content/ru/_articles/telegram_bot.md
similarity index 82%
rename from content/ru/_articles/educational/node_red/telegram_bot.md
rename to content/ru/_articles/telegram_bot.md
index 42290cd7..4bfab48a 100644
--- a/content/ru/_articles/educational/node_red/telegram_bot.md
+++ b/content/ru/_articles/telegram_bot.md
@@ -3,6 +3,5 @@ title: Настройка Telegram-бота на контроллере Wiren Bo
url: https://wirenboard.com/wiki/Node-RED_Telegram
cover: /img/articles/educational/node_red/telegram_bot.png
date: 2021-08-04
-category: educational
-sub_category: node_red
+category: node_red
---
diff --git a/content/ru/_articles/hardware_selection/underfloor_heating.md b/content/ru/_articles/underfloor_heating.md
similarity index 100%
rename from content/ru/_articles/hardware_selection/underfloor_heating.md
rename to content/ru/_articles/underfloor_heating.md
diff --git a/content/ru/_articles/educational/3rd_party_devices/varman_qtherm.md b/content/ru/_articles/varman_qtherm.md
similarity index 82%
rename from content/ru/_articles/educational/3rd_party_devices/varman_qtherm.md
rename to content/ru/_articles/varman_qtherm.md
index 8089b9db..e45b2c28 100644
--- a/content/ru/_articles/educational/3rd_party_devices/varman_qtherm.md
+++ b/content/ru/_articles/varman_qtherm.md
@@ -3,6 +3,5 @@ title: Подключение конвектора Varman Qtherm
url: https://comf.life/podklyuchenie-konvektora-varmann-v-umnyj-dom-apple-home-alisa.html
cover: /img/articles/educational/3rd_party_devices/varman_qtherm.webp
date: 2022-12-30
-category: educational
-sub_category: 3rd_party_devices
+category: 3rd_party_devices
---
diff --git a/content/ru/_articles/educational/ventilation/ventilation_algorithms.md b/content/ru/_articles/ventilation_algorithms.md
similarity index 83%
rename from content/ru/_articles/educational/ventilation/ventilation_algorithms.md
rename to content/ru/_articles/ventilation_algorithms.md
index 59987804..947da138 100644
--- a/content/ru/_articles/educational/ventilation/ventilation_algorithms.md
+++ b/content/ru/_articles/ventilation_algorithms.md
@@ -3,6 +3,5 @@ title: Управление вентиляцией. Типовые алгори
url: https://habr.com/ru/companies/wirenboard/articles/715288/
cover: /img/articles/educational/ventilation/ventilation_algorithms.webp
date: 2023-02-13
-category: educational
-sub_category: ventilation
+category: ventilation
---
diff --git a/content/ru/_articles/educational/ventilation/ventilation_assembly.md b/content/ru/_articles/ventilation_assembly.md
similarity index 85%
rename from content/ru/_articles/educational/ventilation/ventilation_assembly.md
rename to content/ru/_articles/ventilation_assembly.md
index c4196c97..3e546f21 100644
--- a/content/ru/_articles/educational/ventilation/ventilation_assembly.md
+++ b/content/ru/_articles/ventilation_assembly.md
@@ -3,6 +3,5 @@ title: 'Управление вентиляцией: собираем, инте
url: https://habr.com/ru/companies/wirenboard/articles/702444/
cover: /img/articles/educational/ventilation/ventilation_assembly.webp
date: 2022-12-05
-category: educational
-sub_category: ventilation
+category: ventilation
---
diff --git a/content/ru/_articles/hardware_selection/ventilation_control.md b/content/ru/_articles/ventilation_control.md
similarity index 100%
rename from content/ru/_articles/hardware_selection/ventilation_control.md
rename to content/ru/_articles/ventilation_control.md
diff --git a/content/ru/_articles/user_experience/retail/vertical_boutique.md b/content/ru/_articles/vertical_boutique.md
similarity index 83%
rename from content/ru/_articles/user_experience/retail/vertical_boutique.md
rename to content/ru/_articles/vertical_boutique.md
index 240a18ec..a28d7e06 100644
--- a/content/ru/_articles/user_experience/retail/vertical_boutique.md
+++ b/content/ru/_articles/vertical_boutique.md
@@ -3,6 +3,5 @@ title: Vertical Boutique – нужны ли нам умные отели?
url: https://habr.com/ru/companies/wirenboard/articles/705052/
cover: /img/articles/user_experience/retail/vertical_boutique.webp
date: 2022-12-13
-category: user_experience
-sub_category: retail
+category: retail
---
diff --git a/content/ru/_articles/educational/3rd_party_devices/vizit_intercom.md b/content/ru/_articles/vizit_intercom.md
similarity index 81%
rename from content/ru/_articles/educational/3rd_party_devices/vizit_intercom.md
rename to content/ru/_articles/vizit_intercom.md
index afe79045..a73f66b0 100644
--- a/content/ru/_articles/educational/3rd_party_devices/vizit_intercom.md
+++ b/content/ru/_articles/vizit_intercom.md
@@ -3,6 +3,5 @@ title: Управление домофоном Визит с Wiren Board
url: https://sprut.ai/article/put-ot-glupogo-chaynika-k-umnomu-redmond
cover: /img/articles/educational/3rd_party_devices/vizit_intercom.jpg
date: 2022-06-05
-category: educational
-sub_category: 3rd_party_devices
+category: 3rd_party_devices
---
diff --git a/content/ru/_articles/user_experience/embedded/weather_stations.md b/content/ru/_articles/weather_stations.md
similarity index 82%
rename from content/ru/_articles/user_experience/embedded/weather_stations.md
rename to content/ru/_articles/weather_stations.md
index 7c6e9351..ec6044b0 100644
--- a/content/ru/_articles/user_experience/embedded/weather_stations.md
+++ b/content/ru/_articles/weather_stations.md
@@ -3,6 +3,5 @@ title: Две метеостанции в Санкт-Петербурге
url: https://habr.com/ru/companies/wirenboard/articles/777350/
cover: /img/articles/user_experience/embedded/weather_stations.png
date: 2023-11-30
-category: user_experience
-sub_category: embedded
+category: embedded
---
diff --git a/content/ru/_articles/user_experience/tsod/what_for_tsod.md b/content/ru/_articles/what_for_tsod.md
similarity index 83%
rename from content/ru/_articles/user_experience/tsod/what_for_tsod.md
rename to content/ru/_articles/what_for_tsod.md
index bbe3c511..41e6d673 100644
--- a/content/ru/_articles/user_experience/tsod/what_for_tsod.md
+++ b/content/ru/_articles/what_for_tsod.md
@@ -3,6 +3,5 @@ title: От чего защищает ЦОД система мониторинг
url: https://habr.com/ru/companies/wirenboard/articles/742458/
cover: /img/articles/user_experience/tsod/what_for_tsod.jpg
date: 2023-06-19
-category: user_experience
-sub_category: tsod
+category: tsod
---
diff --git a/content/ru/_articles/educational/beginners/what_for_wb.md b/content/ru/_articles/what_for_wb.md
similarity index 83%
rename from content/ru/_articles/educational/beginners/what_for_wb.md
rename to content/ru/_articles/what_for_wb.md
index db32b644..9b98ab41 100644
--- a/content/ru/_articles/educational/beginners/what_for_wb.md
+++ b/content/ru/_articles/what_for_wb.md
@@ -3,6 +3,5 @@ title: Wiren Board и с чем его едят. Краткий обзор
url: https://sprut.ai/article/wiren-board-i-s-chem-ego-edyat-kratkiy-obzor
cover: /img/articles/educational/beginners/what_for_wb.webp
date: 2019-02-23
-category: educational
-sub_category: beginners
+category: beginners
---
diff --git a/content/ru/_articles/educational/3rd_party_devices/wireless_akko_dooya.md b/content/ru/_articles/wireless_akko_dooya.md
similarity index 81%
rename from content/ru/_articles/educational/3rd_party_devices/wireless_akko_dooya.md
rename to content/ru/_articles/wireless_akko_dooya.md
index 9acfbf4c..9e682b92 100644
--- a/content/ru/_articles/educational/3rd_party_devices/wireless_akko_dooya.md
+++ b/content/ru/_articles/wireless_akko_dooya.md
@@ -3,6 +3,5 @@ title: Беспроводное подключение штор Akko и Dooya
url: https://smarttone.ru/blog/wiren-board-rf-blinds-dooya/
cover: /img/articles/educational/3rd_party_devices/wireless_akko_dooya.png
date: 2022-03-24
-category: educational
-sub_category: 3rd_party_devices
+category: 3rd_party_devices
---
diff --git a/content/ru/_articles/manufactoring/wirenboard_ci_cd.md b/content/ru/_articles/wirenboard_ci_cd.md
similarity index 100%
rename from content/ru/_articles/manufactoring/wirenboard_ci_cd.md
rename to content/ru/_articles/wirenboard_ci_cd.md
diff --git a/content/ru/_articles/educational/integrations/zabbix.md b/content/ru/_articles/zabbix.md
similarity index 80%
rename from content/ru/_articles/educational/integrations/zabbix.md
rename to content/ru/_articles/zabbix.md
index 942fd28d..4c072ddd 100644
--- a/content/ru/_articles/educational/integrations/zabbix.md
+++ b/content/ru/_articles/zabbix.md
@@ -3,6 +3,5 @@ title: 'Zabbix + Wiren Board: мониторинг производства'
url: https://habr.com/ru/articles/525852/
cover: /img/articles/educational/integrations/zabbix.png
date: 2020-10-31
-category: educational
-sub_category: integrations
+category: integrations
---
diff --git a/content/ru/_articles/user_experience/apartments/zhelezno.md b/content/ru/_articles/zhelezno.md
similarity index 82%
rename from content/ru/_articles/user_experience/apartments/zhelezno.md
rename to content/ru/_articles/zhelezno.md
index a5c4b94a..6e1e728d 100644
--- a/content/ru/_articles/user_experience/apartments/zhelezno.md
+++ b/content/ru/_articles/zhelezno.md
@@ -3,6 +3,5 @@ title: 'ГК «Железно»: автоматизация многокварт
url: https://wirenboard.com/ru/pages/solutions-zhelezno/
cover: /img/articles/user_experience/apartments/zhelezno.png
date: 2023-11-10
-category: user_experience
-sub_category: apartments
+category: apartments
---
diff --git a/content/ru/_articles/educational/beginners/zigbee2mqtt.md b/content/ru/_articles/zigbee2mqtt.md
similarity index 83%
rename from content/ru/_articles/educational/beginners/zigbee2mqtt.md
rename to content/ru/_articles/zigbee2mqtt.md
index d8d2de80..e293c67a 100644
--- a/content/ru/_articles/educational/beginners/zigbee2mqtt.md
+++ b/content/ru/_articles/zigbee2mqtt.md
@@ -3,6 +3,5 @@ title: Подключаем Zigbee-устройства через Zigbee2mqtt
url: https://habr.com/ru/companies/wirenboard/articles/750640/
cover: /img/articles/educational/beginners/zigbee2mqtt.jpg
date: 2023-07-27
-category: educational
-sub_category: beginners
+category: beginners
---
diff --git a/content/ru/_articles/educational/node_red/zigbee_devices.md b/content/ru/_articles/zigbee_devices.md
similarity index 84%
rename from content/ru/_articles/educational/node_red/zigbee_devices.md
rename to content/ru/_articles/zigbee_devices.md
index 0913e586..0789e5ea 100644
--- a/content/ru/_articles/educational/node_red/zigbee_devices.md
+++ b/content/ru/_articles/zigbee_devices.md
@@ -3,6 +3,5 @@ title: Работаем с Zigbee-устройствами через Zigbee2mqt
url: https://habr.com/ru/companies/wirenboard/articles/713274/
cover: /img/articles/educational/node_red/zigbee_devices.webp
date: 2022-01-31
-category: educational
-sub_category: node_red
+category: node_red
---
diff --git a/content/ru/_articles/educational/heating/zone_controller.md b/content/ru/_articles/zone_controller.md
similarity index 84%
rename from content/ru/_articles/educational/heating/zone_controller.md
rename to content/ru/_articles/zone_controller.md
index 2fc3d0de..fcad58b6 100644
--- a/content/ru/_articles/educational/heating/zone_controller.md
+++ b/content/ru/_articles/zone_controller.md
@@ -3,6 +3,5 @@ title: Зональный контроллер управления теплым
url: https://fil-tec.ru/page/wiren-board-dlja-otoplenija
cover: /img/articles/educational/heating/zone_controller.png
date: 2020-01-08
-category: educational
-sub_category: heating
+category: heating
---
diff --git a/content/ru/_articles/educational/heating/zone_heating.md b/content/ru/_articles/zone_heating.md
similarity index 84%
rename from content/ru/_articles/educational/heating/zone_heating.md
rename to content/ru/_articles/zone_heating.md
index fa86997c..2c24e31d 100644
--- a/content/ru/_articles/educational/heating/zone_heating.md
+++ b/content/ru/_articles/zone_heating.md
@@ -3,6 +3,5 @@ title: Зональное управление отоплением на Wiren B
url: https://sprut.ai/article/otoplenie-pod-kontrolem-zonalnoe-upravlenie
cover: /img/articles/educational/heating/zone_heating.webp
date: 2020-04-03
-category: educational
-sub_category: heating
+category: heating
---
diff --git a/content/ru/_partners/integrator/abrom.md b/content/ru/_integrators/abrom.md
similarity index 94%
rename from content/ru/_partners/integrator/abrom.md
rename to content/ru/_integrators/abrom.md
index c823d760..fb167682 100644
--- a/content/ru/_partners/integrator/abrom.md
+++ b/content/ru/_integrators/abrom.md
@@ -2,7 +2,7 @@
district: [volga]
coordinates: [55.82427415604684, 49.19640453369345]
title: Abrom
-logo: /img/partners/integrator/abrom.webp
+logo: /img/integrators/abrom.webp
phone: 78432555092
website: https://abrom.ru
email: info@abrom.ru
diff --git a/content/ru/_partners/integrator/comfort_life.md b/content/ru/_integrators/comfort_life.md
similarity index 98%
rename from content/ru/_partners/integrator/comfort_life.md
rename to content/ru/_integrators/comfort_life.md
index 8a1b15d0..ba04ed29 100644
--- a/content/ru/_partners/integrator/comfort_life.md
+++ b/content/ru/_integrators/comfort_life.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [59.99963804437398, 30.36195935639194]
title: Comfort-Life
-logo: /img/partners/integrator/comfort_life.webp
+logo: /img/integrators/comfort_life.webp
phone: 78129639778
website: https://comf.life
email: info@comf.life
diff --git a/content/ru/_partners/integrator/e_pro_plus.md b/content/ru/_integrators/e_pro_plus.md
similarity index 97%
rename from content/ru/_partners/integrator/e_pro_plus.md
rename to content/ru/_integrators/e_pro_plus.md
index f8bf4a75..c81ea66b 100644
--- a/content/ru/_partners/integrator/e_pro_plus.md
+++ b/content/ru/_integrators/e_pro_plus.md
@@ -2,7 +2,7 @@
district: [ural]
coordinates: [56.82504365721301, 60.566293814714406]
title: Энерго ПРО
-logo: /img/partners/integrator/e_pro_plus.webp
+logo: /img/integrators/e_pro_plus.webp
phone: 73433833511
website: https://e-proplus.ru
email: info@e-proplus.ru
diff --git a/content/ru/_partners/integrator/enco.md b/content/ru/_integrators/enco.md
similarity index 97%
rename from content/ru/_partners/integrator/enco.md
rename to content/ru/_integrators/enco.md
index 9ffe2e04..c1810c57 100644
--- a/content/ru/_partners/integrator/enco.md
+++ b/content/ru/_integrators/enco.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.56537581413944, 37.48486319851014]
title: ENCO
-logo: /img/partners/integrator/enco.webp
+logo: /img/integrators/enco.webp
phone: 74951170077
website: https://www.enco.house
email: info@enco.house
diff --git a/content/ru/_partners/integrator/expert.md b/content/ru/_integrators/expert.md
similarity index 97%
rename from content/ru/_partners/integrator/expert.md
rename to content/ru/_integrators/expert.md
index 6c4faf91..e162d411 100644
--- a/content/ru/_partners/integrator/expert.md
+++ b/content/ru/_integrators/expert.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [54.964402453961696, 39.046903519929316]
title: ООО «Эксперт»
-logo: /img/partners/integrator/expert.webp
+logo: /img/integrators/expert.webp
phone: 78006006911
website: https://expert-kolomna.ru
email: info@expert-kolomna.ru
diff --git a/content/ru/_partners/integrator/foresight.md b/content/ru/_integrators/foresight.md
similarity index 94%
rename from content/ru/_partners/integrator/foresight.md
rename to content/ru/_integrators/foresight.md
index 57b2b99d..d10f3ae7 100644
--- a/content/ru/_partners/integrator/foresight.md
+++ b/content/ru/_integrators/foresight.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.794322812542234, 37.54353093370438]
title: Форсайт
-logo: /img/partners/integrator/foresight.webp
+logo: /img/integrators/foresight.webp
phone: 74956636806
website: https://foresight-fund.ru
email: inbox@fund-f.ru
diff --git a/content/ru/_partners/integrator/fullhouse.md b/content/ru/_integrators/fullhouse.md
similarity index 97%
rename from content/ru/_partners/integrator/fullhouse.md
rename to content/ru/_integrators/fullhouse.md
index 843dc53b..c81f4638 100644
--- a/content/ru/_partners/integrator/fullhouse.md
+++ b/content/ru/_integrators/fullhouse.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.82475555992766, 37.45003410908481]
title: FullHouse
-logo: /img/partners/integrator/fullhouse.webp
+logo: /img/integrators/fullhouse.webp
phone: 74951991581
website: https://fullhouse-online.ru
email: order@fullhouse-online.ru
diff --git a/content/ru/_partners/integrator/home_control.md b/content/ru/_integrators/home_control.md
similarity index 96%
rename from content/ru/_partners/integrator/home_control.md
rename to content/ru/_integrators/home_control.md
index 820b743a..f1d4a85e 100644
--- a/content/ru/_partners/integrator/home_control.md
+++ b/content/ru/_integrators/home_control.md
@@ -2,7 +2,7 @@
district: [volga]
coordinates: [57.984953077944795, 56.265589147424635]
title: Home Control умный дом
-logo: /img/partners/integrator/home_control.webp
+logo: /img/integrators/home_control.webp
phone: 78002017528
website: https://homecontrol.pro
email: info@homecontrol.pro
diff --git a/content/ru/_partners/integrator/home_on.md b/content/ru/_integrators/home_on.md
similarity index 95%
rename from content/ru/_partners/integrator/home_on.md
rename to content/ru/_integrators/home_on.md
index 10a54799..3f2b404f 100644
--- a/content/ru/_partners/integrator/home_on.md
+++ b/content/ru/_integrators/home_on.md
@@ -2,7 +2,7 @@
district: [ural]
coordinates: [56.8305163965088, 60.587592276649985]
title: HomeOn
-logo: /img/partners/integrator/home_on.webp
+logo: /img/integrators/home_on.webp
phone: 79853570242
website: https://home-on.ru
email: info@home-on.ru
diff --git a/content/ru/_partners/integrator/ics.md b/content/ru/_integrators/ics.md
similarity index 98%
rename from content/ru/_partners/integrator/ics.md
rename to content/ru/_integrators/ics.md
index 9f52fff0..57b6e467 100644
--- a/content/ru/_partners/integrator/ics.md
+++ b/content/ru/_integrators/ics.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.778042963214986, 37.69286596613755]
title: Группа ICS
-logo: /img/partners/integrator/ics.webp
+logo: /img/integrators/ics.webp
phone: 74957204900
website: https://www.icsgroup.ru
email: ics@icsgroup.ru
diff --git a/content/ru/_partners/integrator/ics_monitoring.md b/content/ru/_integrators/ics_monitoring.md
similarity index 95%
rename from content/ru/_partners/integrator/ics_monitoring.md
rename to content/ru/_integrators/ics_monitoring.md
index e3e7d497..3fc153ff 100644
--- a/content/ru/_partners/integrator/ics_monitoring.md
+++ b/content/ru/_integrators/ics_monitoring.md
@@ -2,7 +2,7 @@
district: [center]
coordinates: [54.207610692157054, 37.621188190035156]
title: ООО «ИКС Мониторинг»
-logo: /img/partners/integrator/ics_monitoring.webp
+logo: /img/integrators/ics_monitoring.webp
phone: 74872252500
website: https://icsmonitoring.online
email: sales@icsmonitoring.online
diff --git a/content/ru/_partners/integrator/infotech.md b/content/ru/_integrators/infotech.md
similarity index 96%
rename from content/ru/_partners/integrator/infotech.md
rename to content/ru/_integrators/infotech.md
index 36f2fdbe..5a5e30b2 100644
--- a/content/ru/_partners/integrator/infotech.md
+++ b/content/ru/_integrators/infotech.md
@@ -2,7 +2,7 @@
district: [volga]
coordinates: [58.61506434861371, 49.65493736161975]
title: INFOTECH
-logo: /img/partners/integrator/infotech.webp
+logo: /img/integrators/infotech.webp
phone: 78002010699
website: https://itekh.ru
email: smart@itekh.ru
diff --git a/content/ru/_partners/integrator/intelligent_house.md b/content/ru/_integrators/intelligent_house.md
similarity index 95%
rename from content/ru/_partners/integrator/intelligent_house.md
rename to content/ru/_integrators/intelligent_house.md
index 0891289a..74df0702 100644
--- a/content/ru/_partners/integrator/intelligent_house.md
+++ b/content/ru/_integrators/intelligent_house.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.73233355594546, 37.69716221261671]
title: Intelligent House
-logo: /img/partners/integrator/intelligent_house.webp
+logo: /img/integrators/intelligent_house.webp
phone: 74950663618
website: https://i-ntelligent.ru
email: house@i-ntelligent.ru
diff --git a/content/ru/_partners/integrator/iot_smart_system.md b/content/ru/_integrators/iot_smart_system.md
similarity index 96%
rename from content/ru/_partners/integrator/iot_smart_system.md
rename to content/ru/_integrators/iot_smart_system.md
index ee7d0932..b7bdc124 100644
--- a/content/ru/_partners/integrator/iot_smart_system.md
+++ b/content/ru/_integrators/iot_smart_system.md
@@ -2,7 +2,7 @@
district: [volga]
coordinates: [55.761654129228596, 49.19752531264067]
title: IotSmartSystem
-logo: /img/partners/integrator/iot_smart_system.webp
+logo: /img/integrators/iot_smart_system.webp
phone: 78432085506
website: https://iotsmartsystem.ru
email: smart@iotsmartsystem.ru
diff --git a/content/ru/_partners/integrator/jet.md b/content/ru/_integrators/jet.md
similarity index 97%
rename from content/ru/_partners/integrator/jet.md
rename to content/ru/_integrators/jet.md
index 61ec5105..e756f479 100644
--- a/content/ru/_partners/integrator/jet.md
+++ b/content/ru/_integrators/jet.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.79939704520921, 37.58644358122949]
title: Инфосистемы Джет
-logo: /img/partners/integrator/jet.webp
+logo: /img/integrators/jet.webp
phone: 74954117601
website: https://jet.su
email: info@jet.su
diff --git a/content/ru/_partners/integrator/kaskad.md b/content/ru/_integrators/kaskad.md
similarity index 95%
rename from content/ru/_partners/integrator/kaskad.md
rename to content/ru/_integrators/kaskad.md
index 598566d4..af89f3c8 100644
--- a/content/ru/_partners/integrator/kaskad.md
+++ b/content/ru/_integrators/kaskad.md
@@ -2,7 +2,7 @@
district: [volga]
coordinates: [56.1250920066377, 47.308707690931456]
title: ООО «НПО «Каскад-ГРУП»
-logo: /img/partners/integrator/kaskad.webp
+logo: /img/integrators/kaskad.webp
phone: 78352223432
website: https://kaskad-asu.com
email: abc@kaskad-asu.com
diff --git a/content/ru/_partners/integrator/konstartstudio.md b/content/ru/_integrators/konstartstudio.md
similarity index 97%
rename from content/ru/_partners/integrator/konstartstudio.md
rename to content/ru/_integrators/konstartstudio.md
index 11d593a0..1d909f37 100644
--- a/content/ru/_partners/integrator/konstartstudio.md
+++ b/content/ru/_integrators/konstartstudio.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.756056921132384, 37.59262076232987]
title: KonstArtStudio
-logo: /img/partners/integrator/konstartstudio.webp
+logo: /img/integrators/konstartstudio.webp
phone: 79250575807
website: https://konstartstudio.ru
email: studio@konstart.ru
diff --git a/content/ru/_partners/integrator/ledfarm.md b/content/ru/_integrators/ledfarm.md
similarity index 97%
rename from content/ru/_partners/integrator/ledfarm.md
rename to content/ru/_integrators/ledfarm.md
index a9d87a51..0891f68b 100644
--- a/content/ru/_partners/integrator/ledfarm.md
+++ b/content/ru/_integrators/ledfarm.md
@@ -2,7 +2,7 @@
district: [by]
coordinates: [53.946722375392426, 27.61806785065508]
title: LedFarm.by
-logo: /img/partners/integrator/ledfarm.webp
+logo: /img/integrators/ledfarm.webp
phone: 375259237554
website: https://ledfarm.by
email: info@ledfarm.by
diff --git a/content/ru/_partners/integrator/liis.md b/content/ru/_integrators/liis.md
similarity index 98%
rename from content/ru/_partners/integrator/liis.md
rename to content/ru/_integrators/liis.md
index a0cab92e..418cc3b1 100644
--- a/content/ru/_partners/integrator/liis.md
+++ b/content/ru/_integrators/liis.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.76214414610599, 37.54876833275032]
title: ЛИИС
-logo: /img/partners/integrator/liis.webp
+logo: /img/integrators/liis.webp
phone: 74952780720
website: https://liis.su
email: info@liis.su
diff --git a/content/ru/_partners/integrator/nevoton.md b/content/ru/_integrators/nevoton.md
similarity index 93%
rename from content/ru/_partners/integrator/nevoton.md
rename to content/ru/_integrators/nevoton.md
index f7846d3b..bea77579 100644
--- a/content/ru/_partners/integrator/nevoton.md
+++ b/content/ru/_integrators/nevoton.md
@@ -2,7 +2,7 @@
district: [spb]
coordinates: [59.86276945754903, 30.47150626459452]
title: Невотон
-logo: /img/partners/integrator/nevoton.webp
+logo: /img/integrators/nevoton.webp
phone: 78005504433
website: https://nevoton.ru
email: sales@nevoton.ru
diff --git a/content/ru/_partners/integrator/produmano.md b/content/ru/_integrators/produmano.md
similarity index 97%
rename from content/ru/_partners/integrator/produmano.md
rename to content/ru/_integrators/produmano.md
index 32ea0b72..65de72b8 100644
--- a/content/ru/_partners/integrator/produmano.md
+++ b/content/ru/_integrators/produmano.md
@@ -2,7 +2,7 @@
district: [kg]
coordinates: [42.82789274724515, 74.60996178787109]
title: ООО «ТекоПро»
-logo: /img/partners/integrator/produmano.webp
+logo: /img/integrators/produmano.webp
phone: 996550881155
website: https://produmano.kg
email: tekopro2016@gmail.com
diff --git a/content/ru/_partners/integrator/recota.md b/content/ru/_integrators/recota.md
similarity index 95%
rename from content/ru/_partners/integrator/recota.md
rename to content/ru/_integrators/recota.md
index f9e6c591..a6e596c1 100644
--- a/content/ru/_partners/integrator/recota.md
+++ b/content/ru/_integrators/recota.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.67914612700775, 37.583402295766]
title: Recota
-logo: /img/partners/integrator/recota.webp
+logo: /img/integrators/recota.webp
phone: 74952666096
website: https://recota.ru
email: info@recota.ru
diff --git a/content/ru/_partners/integrator/redpine.md b/content/ru/_integrators/redpine.md
similarity index 98%
rename from content/ru/_partners/integrator/redpine.md
rename to content/ru/_integrators/redpine.md
index ce8fe0e4..0ef5220e 100644
--- a/content/ru/_partners/integrator/redpine.md
+++ b/content/ru/_integrators/redpine.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.8642766417225, 37.65390605932286]
title: ООО «Энергоэффективность»
-logo: /img/partners/integrator/redpine.webp
+logo: /img/integrators/redpine.webp
phone: 74957893800
website: https://redpine.pro
email: redpine@hited.ru
diff --git a/content/ru/_partners/integrator/setpoint.md b/content/ru/_integrators/setpoint.md
similarity index 97%
rename from content/ru/_partners/integrator/setpoint.md
rename to content/ru/_integrators/setpoint.md
index 4689f653..a87a3fdf 100644
--- a/content/ru/_partners/integrator/setpoint.md
+++ b/content/ru/_integrators/setpoint.md
@@ -2,7 +2,7 @@
district: [spb]
coordinates: [59.560505028833084, 31.023961409991077]
title: Setpoint
-logo: /img/partners/integrator/setpoint.webp
+logo: /img/integrators/setpoint.webp
phone: 78129438141
website: https://smartfulness.ru
email: controllerwirenboard@gmail.com
diff --git a/content/ru/_partners/integrator/smart_systema.md b/content/ru/_integrators/smart_systema.md
similarity index 95%
rename from content/ru/_partners/integrator/smart_systema.md
rename to content/ru/_integrators/smart_systema.md
index 68b2cc7e..ec743405 100644
--- a/content/ru/_partners/integrator/smart_systema.md
+++ b/content/ru/_integrators/smart_systema.md
@@ -2,7 +2,7 @@
district: [ural]
coordinates: [56.838174714496695, 60.57425935122906]
title: Смартсистема
-logo: /img/partners/integrator/smart_systema.webp
+logo: /img/integrators/smart_systema.webp
phone: 73432877732
website: https://smartsystema.com
email: welcome@smartsystema.com
diff --git a/content/ru/_partners/integrator/teplomonitor.md b/content/ru/_integrators/teplomonitor.md
similarity index 95%
rename from content/ru/_partners/integrator/teplomonitor.md
rename to content/ru/_integrators/teplomonitor.md
index dbab7c19..954af86a 100644
--- a/content/ru/_partners/integrator/teplomonitor.md
+++ b/content/ru/_integrators/teplomonitor.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [56.013887234186754, 37.08702518024896]
title: Тепломонитор
-logo: /img/partners/integrator/teplomonitor.webp
+logo: /img/integrators/teplomonitor.webp
phone: 74996478913
website: https://teplomonitor.ru
email: 1@teplomonitor.ru
diff --git a/content/ru/_partners/integrator/tk_allians.md b/content/ru/_integrators/tk_allians.md
similarity index 95%
rename from content/ru/_partners/integrator/tk_allians.md
rename to content/ru/_integrators/tk_allians.md
index 881d2221..17ded75c 100644
--- a/content/ru/_partners/integrator/tk_allians.md
+++ b/content/ru/_integrators/tk_allians.md
@@ -2,7 +2,7 @@
district: [by]
coordinates: [53.947585900865356, 27.69945695143718]
title: Частное предприятие «ТКАльянсБел»
-logo: /img/partners/integrator/tk_allians.webp
+logo: /img/integrators/tk_allians.webp
phone: 375447987353
website: https://tk-allians.by
email: info@tk-allians.by
diff --git a/content/ru/_partners/integrator/xiot.md b/content/ru/_integrators/xiot.md
similarity index 99%
rename from content/ru/_partners/integrator/xiot.md
rename to content/ru/_integrators/xiot.md
index 304ba330..dbc5b274 100644
--- a/content/ru/_partners/integrator/xiot.md
+++ b/content/ru/_integrators/xiot.md
@@ -2,7 +2,7 @@
district: [moscow]
coordinates: [55.72505840921418, 37.39902580426399]
title: XIOT
-logo: /img/partners/integrator/xiot.webp
+logo: /img/integrators/xiot.webp
phone: 74952051272
website: https://xiot.ru
email: info@xiot.ru
diff --git a/content/ru/_partners/software/cea_energo.md b/content/ru/_partners/cea_energo.md
similarity index 95%
rename from content/ru/_partners/software/cea_energo.md
rename to content/ru/_partners/cea_energo.md
index e401e324..a957af86 100644
--- a/content/ru/_partners/software/cea_energo.md
+++ b/content/ru/_partners/cea_energo.md
@@ -1,6 +1,6 @@
---
title: ООО «ЦентрЭнергоАвтоматика»
-logo: /img/partners/software/cea_energo.webp
+logo: /img/partners/cea_energo.webp
phone: 74952347643
website: https://cea-energo.ru
email: info@cea-energo.ru
diff --git a/content/ru/_partners/software/fiord.md b/content/ru/_partners/fiord.md
similarity index 96%
rename from content/ru/_partners/software/fiord.md
rename to content/ru/_partners/fiord.md
index 1ec21595..bce01dec 100644
--- a/content/ru/_partners/software/fiord.md
+++ b/content/ru/_partners/fiord.md
@@ -1,6 +1,6 @@
---
title: ФИОРД
-logo: /img/partners/software/fiord.webp
+logo: /img/partners/fiord.webp
phone: 78123236212
website: https://fiord.com/
email: info@fiord.com
diff --git a/content/ru/_partners/software/inpro.md b/content/ru/_partners/inpro.md
similarity index 97%
rename from content/ru/_partners/software/inpro.md
rename to content/ru/_partners/inpro.md
index c42718a3..ee3fa36d 100644
--- a/content/ru/_partners/software/inpro.md
+++ b/content/ru/_partners/inpro.md
@@ -1,6 +1,6 @@
---
title: Интерактивные пространства
-logo: /img/partners/software/inpro.webp
+logo: /img/partners/inpro.webp
phone: 74997556219
website: https://inpro.su
email : contact@inpro.su
diff --git a/content/ru/_partners/software/intellytech.md b/content/ru/_partners/intellytech.md
similarity index 96%
rename from content/ru/_partners/software/intellytech.md
rename to content/ru/_partners/intellytech.md
index c183cc1e..459d3aff 100644
--- a/content/ru/_partners/software/intellytech.md
+++ b/content/ru/_partners/intellytech.md
@@ -1,6 +1,6 @@
---
title: ООО «ИНТЕЛЛИТЕХ»
-logo: /img/partners/software/intellytech.webp
+logo: /img/partners/intellytech.webp
phone: 74959689886
website: https://intellytech.ru
email: mail@intellytech.ru
diff --git a/content/ru/_partners/software/intra.md b/content/ru/_partners/intra.md
similarity index 96%
rename from content/ru/_partners/software/intra.md
rename to content/ru/_partners/intra.md
index 0b6cf83a..eb242c70 100644
--- a/content/ru/_partners/software/intra.md
+++ b/content/ru/_partners/intra.md
@@ -1,6 +1,6 @@
---
title: ООО «Интра»
-logo: /img/partners/software/intra.webp
+logo: /img/partners/intra.webp
phone: 78352240378
website: https://intrascada.ru
email: info@ih-systems.com
diff --git a/content/ru/_partners/software/iridi.md b/content/ru/_partners/iridi.md
similarity index 97%
rename from content/ru/_partners/software/iridi.md
rename to content/ru/_partners/iridi.md
index 8cc94a57..ccfaaf28 100644
--- a/content/ru/_partners/software/iridi.md
+++ b/content/ru/_partners/iridi.md
@@ -1,6 +1,6 @@
---
title: iRidium mobile
-logo: /img/partners/software/iridi.webp
+logo: /img/partners/iridi.webp
phone: 74993227329
website: https://iridi.com/ru
email: contact@iridi.com
diff --git a/content/ru/_partners/software/liten.md b/content/ru/_partners/liten.md
similarity index 98%
rename from content/ru/_partners/software/liten.md
rename to content/ru/_partners/liten.md
index 7f567e28..8e4b408c 100644
--- a/content/ru/_partners/software/liten.md
+++ b/content/ru/_partners/liten.md
@@ -1,6 +1,6 @@
---
title: ООО «ЛАЙТЭН»
-logo: /img/partners/software/liten.webp
+logo: /img/partners/liten.webp
phone: 74993437243
website: https://liten-soft.ru
email: info@liten-soft.ru
diff --git a/content/ru/_partners/software/master_scada.md b/content/ru/_partners/master_scada.md
similarity index 94%
rename from content/ru/_partners/software/master_scada.md
rename to content/ru/_partners/master_scada.md
index a372a74a..98114431 100644
--- a/content/ru/_partners/software/master_scada.md
+++ b/content/ru/_partners/master_scada.md
@@ -1,6 +1,6 @@
---
title: МПС Софт
-logo: /img/partners/software/master_scada.webp
+logo: /img/partners/master_scada.webp
phone: 78007755790
website: https://masterscada.ru
email: info@masterscada.ru
diff --git a/content/ru/_partners/software/mts.md b/content/ru/_partners/mts.md
similarity index 95%
rename from content/ru/_partners/software/mts.md
rename to content/ru/_partners/mts.md
index effbbe2d..0ed7d5ab 100644
--- a/content/ru/_partners/software/mts.md
+++ b/content/ru/_partners/mts.md
@@ -1,6 +1,6 @@
---
title: МТС
-logo: /img/partners/software/mts.webp
+logo: /img/partners/mts.webp
phone: 78002500990
website: https://mts.ru
---
diff --git a/content/ru/_partners/software/rapid_scada.md b/content/ru/_partners/rapid_scada.md
similarity index 95%
rename from content/ru/_partners/software/rapid_scada.md
rename to content/ru/_partners/rapid_scada.md
index 4d8ff074..c35354f4 100644
--- a/content/ru/_partners/software/rapid_scada.md
+++ b/content/ru/_partners/rapid_scada.md
@@ -1,6 +1,6 @@
---
title: ООО «Рапид Софтвэа»
-logo: /img/partners/software/rapid_scada.webp
+logo: /img/partners/rapid_scada.webp
phone: 74732303612
website: https://rapidscada.ru
email: info@rapidscada.ru
diff --git a/content/ru/_partners/software/rightech.md b/content/ru/_partners/rightech.md
similarity index 97%
rename from content/ru/_partners/software/rightech.md
rename to content/ru/_partners/rightech.md
index 2d5e7de3..36d24504 100644
--- a/content/ru/_partners/software/rightech.md
+++ b/content/ru/_partners/rightech.md
@@ -1,6 +1,6 @@
---
title: Rightech IoT Cloud
-logo: /img/partners/software/rightech.webp
+logo: /img/partners/rightech.webp
phone: 74994506525
website: https://rightech.io
email: sales@rightech.io
diff --git a/content/ru/_partners/software/saymon.md b/content/ru/_partners/saymon.md
similarity index 96%
rename from content/ru/_partners/software/saymon.md
rename to content/ru/_partners/saymon.md
index 61f17499..da4965b0 100644
--- a/content/ru/_partners/software/saymon.md
+++ b/content/ru/_partners/saymon.md
@@ -1,6 +1,6 @@
---
title: Saymon
-logo: /img/partners/software/saymon.webp
+logo: /img/partners/saymon.webp
phone: 78123099885
website: https://saymon.info
email: welcome@saymon.info
diff --git a/content/ru/_partners/software/simplight.md b/content/ru/_partners/simplight.md
similarity index 95%
rename from content/ru/_partners/software/simplight.md
rename to content/ru/_partners/simplight.md
index d34ea35f..9eb83671 100644
--- a/content/ru/_partners/software/simplight.md
+++ b/content/ru/_partners/simplight.md
@@ -1,6 +1,6 @@
---
title: СИМП Лайт
-logo: /img/partners/software/simplight.webp
+logo: /img/partners/simplight.webp
phone: 73432472133
website: https://simplight.ru
email: simp@simplight.ru
diff --git a/content/ru/_partners/software/smartdcim.md b/content/ru/_partners/smartdcim.md
similarity index 95%
rename from content/ru/_partners/software/smartdcim.md
rename to content/ru/_partners/smartdcim.md
index c334df93..9901a7c3 100644
--- a/content/ru/_partners/software/smartdcim.md
+++ b/content/ru/_partners/smartdcim.md
@@ -1,6 +1,6 @@
---
title: ООО «ЦОДУМ»
-logo: /img/partners/software/smartdcim.webp
+logo: /img/partners/smartdcim.webp
phone: 78123099885
website: https://smartdcim.ru
email: info@smartdcim.ru
diff --git a/content/ru/_partners/software/techsensor.md b/content/ru/_partners/techsensor.md
similarity index 91%
rename from content/ru/_partners/software/techsensor.md
rename to content/ru/_partners/techsensor.md
index ebaa40d6..acb1a84f 100644
--- a/content/ru/_partners/software/techsensor.md
+++ b/content/ru/_partners/techsensor.md
@@ -1,6 +1,6 @@
---
title: Techsensor
-logo: /img/partners/software/techsensor.webp
+logo: /img/partners/techsensor.webp
phone: 74996575911
website: https://techsensor.ru
email: mail@techsensor.ru
diff --git a/content/ru/jobs/index.md b/content/ru/jobs/index.md
index 509b6fc4..e96df0d4 100644
--- a/content/ru/jobs/index.md
+++ b/content/ru/jobs/index.md
@@ -2,7 +2,7 @@
title: Работа в Wiren Board
---
-:youtube{id="jlpzJGvw5-o"}
+:youtube{url="https://www.youtube.com/watch?v=jlpzJGvw5-o"}
Компания Wiren Board разрабатывает и производит электронику для автоматизации инженерных систем: промышленных и коммерческих объектов, частных домов и квартир. Среди клиентов — как профессиональные интеграторы, так и энтузиасты умного дома.
Wiren Board была основана в 2013 году тремя выпускниками Физтеха. Владельцы компании — это люди, которые сами умеют делать суровые инженерные вещи, и у них есть чему поучиться. В компании западный стиль управления. Отсутствует строгая иерархия, дистанция между топ-менеджментом и персоналом минимальная, общение исключительно на ты. Любой сотрудник может предложить идею на общем собрании. Сотрудники вовлечены в процесс принятия решения.
diff --git a/content/ru/_articles/.README.md b/doc/articles.md
similarity index 71%
rename from content/ru/_articles/.README.md
rename to doc/articles.md
index 9ca04106..1a9da490 100644
--- a/content/ru/_articles/.README.md
+++ b/doc/articles.md
@@ -1,4 +1,4 @@
-Содержимое папки *_articles* автоматически формирует раздел [Статьи](https://wirenboard.com/ru/pages/articles/).
+Содержимое папки *content/[locale]/_articles* автоматически формирует раздел [Статьи](https://wirenboard.com/ru/pages/articles/).
Внутри есть 4 раздела с подразделами:
- eductational (Обучающие ролики)
- 3rd_party_devices (Подключение сторонних устройств)
@@ -17,7 +17,9 @@
- home_automation (Домашняя автоматизация)
- retail (Ритейл, рестораны и отели)
- tsod (ЦОД)
-Для того чтобы добавить новую статью в один из разделах, просто создайте в необходимом разделе файл с разрешением **.md**,
+Редактировать существующие и добавлять новые категории можно в файле [article_categories](../common/article_categories.ts).
+
+Для того чтобы добавить новую статью в один из разделах, просто создайте в необходимом разделе директории *content/[locale]/_articles* файл с разрешением **.md**,
и дайте ему осмысленное название, чтобы было удобнее ориентироваться в будущем. Содержимое файла следующее:
```
---
@@ -26,8 +28,7 @@ url: Ссылка на статью
cover: Путь до обложки статьи внутри папки public (например /img/articles/educational/beginners/dark_room_scenario.jpg)
date: Дата публикации статьи в формате ISO 8601 (YYYY-MM-DD, например 2023-01-21)
category: Раздел (выше есть список разделов, например educational)
-sub_category: Подраздел, если есть (например 3rd_party_devices)
---
```
-Не забудьте добавить обложку статьи в дирекорию public/img/articles. Желательно чтобы картинка не была шириной выше 500 пикселей.
+Не забудьте добавить обложку статьи в дирекорию `public/img/articles` с именем идентисным именованию файла статьи. Желательно чтобы картинка не была шириной выше 500 пикселей.
diff --git a/doc/components.md b/doc/components.md
index 70fc0c07..15ac6c3e 100644
--- a/doc/components.md
+++ b/doc/components.md
@@ -15,5 +15,5 @@
## Youtube плеер
```
-:youtube{id="ID ролика"}
+:youtube{url="URL youtube ролика"}
```
\ No newline at end of file
diff --git a/content/ru/_partners/integrator/.README.md b/doc/integrators.md
similarity index 83%
rename from content/ru/_partners/integrator/.README.md
rename to doc/integrators.md
index 8ca29a78..be9fb7c9 100644
--- a/content/ru/_partners/integrator/.README.md
+++ b/doc/integrators.md
@@ -1,4 +1,4 @@
-Содержимое папки *_partners/integrator* автоматически формирует раздел [Интеграторы](https://wirenboard.com/ru/pages/integrators/).
+Содержимое папки *content/[locale]/_integrators* автоматически формирует раздел [Интеграторы](https://wirenboard.com/ru/pages/integrators/).
Для того чтобы добавить нового интегратора, просто создайте файл с разрешением **.md**,
и дайте ему осмысленное название, чтобы было удобнее ориентироваться в будущем.
@@ -9,7 +9,7 @@
district: Основной регион работы, пишется в квадратных скобках (например [volga]. доступные регионы: moscow, spb, center, volga, ural, by, kg)
coordinates: Массив координат головного офиса, например ([55.82427415604684, 49.19640453369345])
title: Название интегратора
-logo: Путь до логотипа (например /img/partners/integrator/iridi.webp)
+logo: Путь до логотипа (например /img/partners/integrators/iridi.webp)
phone: Телефонный номер без доп символов и пробелов (например 74993227329)
website: Сайт, начинается с https:// (https://iridi.com/ru)
email: Контактный e-mail
@@ -18,5 +18,5 @@ email: Контактный e-mail
А здесь описание в формате md разметки.
```
-Не забудьте добавить логотип в дирекорию public/img/partners.
+Не забудьте добавить логотип в дирекорию public/img/integrators.
При необходимости продублируйте перевод на английский язык по тому же пути в папке *en*.
diff --git a/content/ru/_partners/software/.README.md b/doc/partners.md
similarity index 83%
rename from content/ru/_partners/software/.README.md
rename to doc/partners.md
index 6faf49ef..4d30162b 100644
--- a/content/ru/_partners/software/.README.md
+++ b/doc/partners.md
@@ -1,4 +1,4 @@
-Содержимое папки *_partners/software* автоматически формирует раздел [Партнеры](https://wirenboard.com/ru/pages/partners/).
+Содержимое папки *content/[locale]/_partners* автоматически формирует раздел [Партнеры](https://wirenboard.com/ru/pages/partners/).
Для того чтобы добавить нового партнера, просто создайте файл с разрешением **.md**,
и дайте ему осмысленное название, чтобы было удобнее ориентироваться в будущем.
@@ -7,7 +7,7 @@
```
---
title: Название интегратора
-logo: Путь до логотипа (например /img/partners/software/iridi.webp)
+logo: Путь до логотипа (например /img/partners/iridi.webp)
phone: Телефонный номер без доп символов и пробелов (например 74993227329)
website: Сайт, начинается с https:// (https://iridi.com/ru)
email: Контактный e-mail
diff --git a/content/ru/jobs/.README.md b/doc/vacancies.md
similarity index 87%
rename from content/ru/jobs/.README.md
rename to doc/vacancies.md
index 393da18e..d18ee7b6 100644
--- a/content/ru/jobs/.README.md
+++ b/doc/vacancies.md
@@ -1,6 +1,6 @@
-Файл *index.md* описывает контент страницы [Работа в Wirenboard](https://wirenboard.com/ru/pages/jobs/).
+Файл [index.md](../content/ru/jobs/index.md) описывает контент страницы [Работа в Wirenboard](https://wirenboard.com/ru/pages/jobs/).
-Содержимое папки *_vacancies* автоматически формирует список доступных вакансий.
+Содержимое папки *content/[locale]/jobs/_vacancies* автоматически формирует список доступных вакансий.
Для того чтобы добавить новую вакансию, просто создайте файл с разрешением **.md** в папке *vacancies*,
и дайте ему осмысленное название, чтобы было удобнее ориентироваться в будущем.
diff --git a/pages/index.vue b/pages/index.vue
deleted file mode 100644
index 4a791911..00000000
--- a/pages/index.vue
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
diff --git a/pages/pages/articles.vue b/pages/pages/articles.vue
index 95d8c008..82fdcc8d 100644
--- a/pages/pages/articles.vue
+++ b/pages/pages/articles.vue
@@ -1,8 +1,11 @@