{"id":4159,"date":"2024-04-03T13:49:33","date_gmt":"2024-04-03T13:49:33","guid":{"rendered":"http:\/\/dmz006.volke-muc.de\/?page_id=4159"},"modified":"2026-01-15T09:48:40","modified_gmt":"2026-01-15T08:48:40","slug":"aktuelle-stellenanzeigen","status":"publish","type":"page","link":"https:\/\/www.volke-muc.de\/?page_id=4159","title":{"rendered":"Aktuelle Stellenanzeigen"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4159\" class=\"elementor elementor-4159\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6a9fa6a7 elementor-section-full_width elementor-section-stretched page-title-section elementor-section-height-default elementor-section-height-default qodef-elementor-content-no\" data-id=\"6a9fa6a7\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2f886f07\" data-id=\"2f886f07\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-641ec6b7 elementor-section-height-min-height elementor-section-content-middle featured-section elementor-section-boxed elementor-section-height-default qodef-elementor-content-no\" data-id=\"641ec6b7\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-342ab475\" data-id=\"342ab475\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-13687f87 elementor-widget elementor-widget-heading\" data-id=\"13687f87\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">KARRIERE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-43724264 elementor-widget elementor-widget-heading\" data-id=\"43724264\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Aktuelle Stellenanzeigen<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-81adf9a elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default qodef-elementor-content-no\" data-id=\"81adf9a\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-wider\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-56ddc88\" data-id=\"56ddc88\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e25bb8a elementor-widget elementor-widget-text-editor\" data-id=\"e25bb8a\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<script>\nasync function fetchAndDisplayJSON(url) {\n    \/\/ fetch data from api\n    const response = await fetch(url);\n    const jobOffers = await response.json();\n    if (!Array.isArray(jobOffers)) throw new Error(\"API returned invalid data, expected job-offers to be an array\");\n\n    \/\/ sort by ref-nr, map offers by department\n    const jobOffersByDepartment = jobOffers\n        .sort((a, b) => a.refnr.localeCompare(b.refnr))\n        .reduce((groups, offer) => {\n            if (groups[offer.department] === undefined) groups[offer.department] = [];\n            groups[offer.department].push(offer);\n            return groups;\n        }, {});\n\n    \/\/ sort by key, return-value is a tuple [department, offer[]]\n    const sortedJobOffersByDepartment = Object.entries(jobOffersByDepartment).sort();\n\n    \/\/ get container-element for the job-offers\n    const jobContainer = document.getElementById(\"stellenanzeigen\");\n    if (jobContainer === null) throw new Error(\"Failed to get jobContainer\");\n\n    \/\/ create html-elements for departments and job-offerings\n    sortedJobOffersByDepartment.forEach(([department, group], departmentIdx) => {\n        \/\/ department heading\n        const departmentHeading = document.createElement(\"h2\");\n        departmentHeading.textContent = department.includes(\"bitte ausw\u00e4hlen\") ? \"\" : department;\n        jobContainer.appendChild(departmentHeading);\n\n        \/\/ offers\n        group.forEach((offer, offerIdx) => {\n            const offerId = `${departmentIdx}-${offerIdx}`;\n            const offerDiv = document.createElement(\"div\");\n\n            \/\/ offer-button (e.g. an offers heading), toggles visibility of the offers description\n            const offerButton = document.createElement(\"button\");\n            offerButton.addEventListener(\"click\", () => {\n                const descriptionDiv = document.getElementById(`description-${offerId}`);\n                if (descriptionDiv === null) throw new Error(\"Failed to get description-div for \");\n                descriptionDiv.style.display = descriptionDiv.style.display === 'none' ? 'block' : 'none';\n            });\n            offerButton.style.fontWeight = 'bold';\n            offerButton.textContent = `${offer.titel}`;\n\n            \/\/ offer description-container\n            const offerDescriptionContainer = document.createElement(\"div\");\n            offerDescriptionContainer.id = `description-${offerId}`;\n            offerDescriptionContainer.style.display = 'none';\n\n            \/\/ offer description\n            const offerDescription = document.createElement(\"div\");\n            offerDescription.innerHTML = offer.description;\n\n            \/\/ apply-link\n            const applyLink = document.createElement(\"a\");\n            applyLink.target = '_blank';\n            applyLink.className = 'apply_button';\n\n            \/\/ apply-button, within apply-link, triggers creation of the iframe\n            const applyLinkButton = document.createElement(\"button\");\n            applyLink.appendChild(applyLinkButton);\n            applyLinkButton.innerText = \"Hier Bewerben!\"\n            applyLinkButton.addEventListener(\"click\", () => {\n                const oaFrame = document.createElement(\"iframe\");\n                oaFrame.id = `frame-${offerId}`;\n                oaFrame.src = `https:\/\/www.volke-muc.de\/onlineapplication\/login.jsp?jobappl=${offer.refnr}`;\n                oaFrame.style.height = \"860px\";\n                oaFrame.style.borderRadius = \"30px\";\n                oaFrame.style.visibility = \"hidden\";\n                oaFrame.addEventListener(\"load\", () => {\n                    \/\/ manipulate the iframe content\n                    const iframeDocument = oaFrame.contentDocument || oaFrame.contentWindow.document;\n                    const iframeHeaderElements = iframeDocument.getElementsByClassName('header');\n                    Array.from(iframeHeaderElements).forEach(header => header.parentNode.removeChild(header));\n                    const iframeOversizeElements = iframeDocument.getElementsByClassName('oversized');\n                    Array.from(iframeOversizeElements).forEach(oversize => oversize.parentNode.removeChild(oversize));\n                    const iframeBody = iframeDocument.getElementsByTagName('body');\n                    Array.from(iframeBody).forEach(body => {\n                        body.style.overflowX = \"hidden\";\n                        body.style.height = \"initial\";\n                        body.style.paddingLeft = \"20px\";\n                        body.style.paddingRight = \"20px\";\n                    });\n                    const iframeContainer = iframeDocument.getElementsByClassName('container');\n                    Array.from(iframeContainer).forEach(container => container.classList.remove('container'));\n                    oaFrame.style.visibility = \"visible\";\n                });\n                applyLink.replaceChild(oaFrame, applyLinkButton);\n            })\n\n            \/\/ append children to their containers\n            offerDescriptionContainer.append(offerDescription, applyLink);\n            offerDiv.append(offerButton, offerDescriptionContainer);\n            jobContainer.appendChild(offerDiv);\n        });\n    });\n}\n\nfetchAndDisplayJSON('\/joboffers')\n    .then(() => console.log(`Successfully fetched and displayed job-offers`))\n    .catch((err) => console.log(`Failed to fetch and display job-offers`, err));\n<\/script>\n<div id=\"stellenanzeigen\"><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2cb17b23 elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default qodef-elementor-content-no\" data-id=\"2cb17b23\" data-element_type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4d6816a\" data-id=\"4d6816a\" data-element_type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7f029b1b elementor-section-full_width elementor-section-content-middle elementor-section-height-default elementor-section-height-default qodef-elementor-content-no\" data-id=\"7f029b1b\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6a830191\" data-id=\"6a830191\" data-element_type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-1d2aa4d4 elementor-section-content-middle elementor-section-full_width elementor-section-height-default elementor-section-height-default qodef-elementor-content-no\" data-id=\"1d2aa4d4\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3e2562c3\" data-id=\"3e2562c3\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2b7947a2 e-transform elementor-widget elementor-widget-image\" data-id=\"2b7947a2\" data-element_type=\"widget\" data-settings=\"{&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.1,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"348\" height=\"499\" src=\"https:\/\/www.volke-muc.de\/wp-content\/uploads\/2024\/05\/Sybille-Brandmeier-Abteilungsleiterin-Kreis-Schatten.jpg\" class=\"attachment-full size-full wp-image-6194\" alt=\"\" srcset=\"https:\/\/www.volke-muc.de\/wp-content\/uploads\/2024\/05\/Sybille-Brandmeier-Abteilungsleiterin-Kreis-Schatten.jpg 348w, https:\/\/www.volke-muc.de\/wp-content\/uploads\/2024\/05\/Sybille-Brandmeier-Abteilungsleiterin-Kreis-Schatten-209x300.jpg 209w\" sizes=\"(max-width: 348px) 100vw, 348px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-66 elementor-inner-column elementor-element elementor-element-18bcbd4a\" data-id=\"18bcbd4a\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-286f0de5 elementor-widget elementor-widget-text-editor\" data-id=\"286f0de5\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"color: #28a546;\"><strong>Sybille Brandmeier<\/strong><\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5d19912d elementor-widget elementor-widget-text-editor\" data-id=\"5d19912d\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Ansprechpartner Karriere<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5412fdbc e-transform elementor-mobile-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"5412fdbc\" data-element_type=\"widget\" data-settings=\"{&quot;_transform_translateY_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-5,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"mailto:karriere@volke-muc.de\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-envelope\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">karriere@volke-muc.de<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-66 elementor-inner-column elementor-element elementor-element-2f7a3d6b\" data-id=\"2f7a3d6b\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-63e0a22d elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default qodef-elementor-content-no\" data-id=\"63e0a22d\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-extended\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1cb4d838 deep-green\" data-id=\"1cb4d838\" data-element_type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2ab58326 elementor-widget elementor-widget-text-editor\" data-id=\"2ab58326\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tZur \u00dcbersicht<br>\nunserer Leistungen\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3fea2b4b elementor-align-center e-transform elementor-widget elementor-widget-button\" data-id=\"3fea2b4b\" data-element_type=\"widget\" data-settings=\"{&quot;_transform_translateY_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-5,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/?page_id=2587\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Mehr erfahren \u203a<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-560f7630 deep-green\" data-id=\"560f7630\" data-element_type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1c260b43 elementor-widget elementor-widget-text-editor\" data-id=\"1c260b43\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Vorteile bei<br \/>VOLKE<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-36df06c1 elementor-align-center e-transform elementor-widget elementor-widget-button\" data-id=\"36df06c1\" data-element_type=\"widget\" data-settings=\"{&quot;_transform_translateY_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-5,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/?page_id=2076\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Mehr erfahren \u203a<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>KARRIERE Aktuelle Stellenanzeigen Sybille Brandmeier Ansprechpartner Karriere karriere@volke-muc.de Zur \u00dcbersicht unserer Leistungen Mehr erfahren \u203a Vorteile beiVOLKE Mehr erfahren \u203a<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":2074,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":"","_links_to":"","_links_to_target":""},"class_list":["post-4159","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.volke-muc.de\/index.php?rest_route=\/wp\/v2\/pages\/4159","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.volke-muc.de\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.volke-muc.de\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.volke-muc.de\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.volke-muc.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4159"}],"version-history":[{"count":425,"href":"https:\/\/www.volke-muc.de\/index.php?rest_route=\/wp\/v2\/pages\/4159\/revisions"}],"predecessor-version":[{"id":6983,"href":"https:\/\/www.volke-muc.de\/index.php?rest_route=\/wp\/v2\/pages\/4159\/revisions\/6983"}],"up":[{"embeddable":true,"href":"https:\/\/www.volke-muc.de\/index.php?rest_route=\/wp\/v2\/pages\/2074"}],"wp:attachment":[{"href":"https:\/\/www.volke-muc.de\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4159"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}