From 1f02223e7bcb93fab720d2cc4519ab9ed017e9c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torben=20B=C3=B6hnke?= <torben.boehnke-makerspace@rub.de> Date: Mon, 9 Sep 2024 14:49:34 +0200 Subject: [PATCH] add infomonitor_autoswitch --- docs/info_monitor_autoswitch.html | 208 ++++++++++++++++++++ public/designlabor/index.html | 2 +- public/feed_rss_created.xml | 2 +- public/feed_rss_updated.xml | 2 +- public/info_monitor_autoswitch.html | 208 ++++++++++++++++++++ public/ms-nutzen/index.html | 2 +- public/ort/index.html | 2 +- public/sitemap.xml | 166 ++++++++-------- public/sitemap.xml.gz | Bin 1335 -> 1334 bytes public/zielgruppe_startup_extern/index.html | 2 +- 10 files changed, 505 insertions(+), 89 deletions(-) create mode 100644 docs/info_monitor_autoswitch.html create mode 100644 public/info_monitor_autoswitch.html diff --git a/docs/info_monitor_autoswitch.html b/docs/info_monitor_autoswitch.html new file mode 100644 index 000000000..b4474ccb2 --- /dev/null +++ b/docs/info_monitor_autoswitch.html @@ -0,0 +1,208 @@ +<!DOCTYPE html> +<html lang="de"> + +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Infomonitor</title> + <script src="javascripts/ical.js"></script> + <!-- calls ical.js library to parse the ics-data from the calendar file into data the fullcalendar-library can work with --> + <script src="javascripts/index.global.min.js"></script> <!-- calls the fullcalendar.js library --> + <link rel="stylesheet" href="stylesheets/main.css"> + <!-- this calls the variables holding the "core"-Design for the entire Website like colors-codes etc. --> + <link rel="stylesheet" href="stylesheets//components/calender.css"> + <!-- this calls the specific Design for the calendar, and can use the variables of the file above --> +</head> + +<body> + <style> + html { + overflow-y: scroll; + width: 100%; + height: auto; + aspect-ratio: 9/16; + } + + body { + width: 100%; + height: 100%; + overflow: hidden scroll; + font-size: 66px; + background: rgb(244, 123, 138); + background: linear-gradient(135deg, rgba(244, 123, 138, 1) 0%, rgba(44, 63, 96, 1) 100%); + } + + .page { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + opacity: 0; + transition: opacity 1s ease; + overflow: hidden scroll; + display: none; + /* Start with all pages not displayed */ + } + + /* Initial visibility */ + #page1 { + opacity: 1; + /* Show first page initially */ + background: white; + } + + /* Hidden by default */ + #page2 { + display: none; + } + + /* Hidden by default */ + #page3 { + display: none; + } + + .header-logo { + margin-bottom: 4%; + width: calc((var(--header-logo-height) * var(--header-logo-factor)) * 3); + height: calc(var(--header-logo-height) * 3); + } + + .qr-code { + position: relative; + left: 50%; + transform: translateX(-50%) scale(3); + transform-origin: top; + } + + p { + line-height: 180%; + } + + p strong { + color: rgb(var(--rub-blau)); + } + + .im-footer { + display: flex; + flex-direction: row; + align-items: flex-start; + justify-content: space-between; + margin: 2.5em 0 0 0; + } + + .im-footer div { + max-width: 45%; + } + + .dev-tools-wrapper { + display: flex; + justify-content: center; + width: 100%; + position: fixed; + top: 0; + left: 0; + background-color: rgba(0, 0, 0, 0.8); + box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); + z-index: 8; + padding: 10px; + color: white; + } + + .font-size-input { + width: 100%; + text-align: center; + } + + .font-size-input input { + padding: 5px; + font-size: 1em; + border: none; + border-radius: 4px; + } + + #imContent { + padding: 5%; + } + + .fc .fc-list-table { + pointer-events: none; + } + + .aquarium { + width: 100%; + height: 100%; + object-fit: cover; + /* Ensure the image covers the screen without distortion */ + } + </style> + <div id="page1" class="page"> + <div id="imContent"> + <div class="calendar-wrapper"> + <div class="header-logo" alt="logo"></div> + <div id='form-container'></div> <!-- this div holds the contact form --> + <div id='calendar' style="border: none;"></div> <!-- this div holds the calendar --> + </div> + <div class="im-footer"> + <div> + <p>Besuche unsere Webseite unter <br> <strong>https://makerspace.ruhr-uni-bochum.de/</strong> + <br>oder scanne + einfach den QR-Code</p> + <img class="qr-code" src="/medien/qr_code.png"></img> + </div> + <div> + <p>Kontaktiere uns<br> + E-Mail: <strong>makerspace@rub.de</strong><br> + Tel: 0234 32 26088 + </p> + </div> + </div> + </div> + </div> + <div id="page2" class="page"> + <img class="aquarium" src="/medien/makerspace-logo-willkommen.png" style="width:100%; height:auto;"></img> + </div> + <div id="page3" class="page"> + <img class="aquarium" src="/medien/visionen.jpg"></img> + </div> + <script src="javascripts/ics_calendar.js"></script> + <!-- this calls the js that is responsible for everything around the calendar and contact form --> + <script> + document.addEventListener("DOMContentLoaded", function () { + var page1 = document.getElementById('page1'); + var page2 = document.getElementById('page2'); + var page3 = document.getElementById('page3'); + + // Initialize pages correctly + page1.style.display = 'block'; + page1.style.opacity = 1; + + function switchPage(currentPage, nextPage) { + nextPage.style.display = 'block'; // Ensure next page is ready to fade in + nextPage.style.opacity = 0; // Reset opacity to trigger transition + + setTimeout(function () { + currentPage.style.opacity = 0; // Start fading out current page + nextPage.style.opacity = 1; // Start fading in next page + }, 100); // Short delay to ensure the opacity change triggers + + setTimeout(function () { + currentPage.style.display = 'none'; // Hide current page after transition + }, 1100); // Set this to slightly longer than the CSS transition to ensure it completes + } + + // Function to cycle through the pages + function cyclePages() { + setTimeout(function () { switchPage(page1, page2); }, 12000); // Page 1 to 2 after 12 seconds + setTimeout(function () { switchPage(page2, page3); }, 18000); // Page 2 to 3 after 6 seconds + setTimeout(function () { switchPage(page3, page1); }, 24000); // Page 3 to 1 after 6 seconds + } + + cyclePages(); // Start the cycle + setInterval(cyclePages, 24000); // Repeat every 24 seconds (12s + 6s + 6s) + }); + </script> +</body> + +</html> \ No newline at end of file diff --git a/public/designlabor/index.html b/public/designlabor/index.html index 80c2dc45d..24b020dc6 100644 --- a/public/designlabor/index.html +++ b/public/designlabor/index.html @@ -1360,7 +1360,7 @@ https://github.com/squidfunk/mkdocs-material/blob/master/src/partials/source-fil <!-- mkdocs-git-revision-date-localized-plugin --> Letztes Update: - <span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_date">2024-09-03</span> + <span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_date">2024-09-06</span> / Erstellt: diff --git a/public/feed_rss_created.xml b/public/feed_rss_created.xml index 9cde4a9ef..5b8177f88 100644 --- a/public/feed_rss_created.xml +++ b/public/feed_rss_created.xml @@ -1,2 +1,2 @@ <?xml version='1.0' encoding='utf-8'?> -<rss xmlns:ns0="http://www.w3.org/2005/Atom" version="2.0"> <channel><title>RUB-MAKERSPACE</title><description>Die offene Werkstatt an der RUB</description><link>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/</link><ns0:link href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/feed_rss_created.xml" rel="self" type="application/rss+xml" /><language>en-None</language> <pubDate>Thu, 05 Sep 2024 14:32:04 -0000</pubDate> <lastBuildDate>Thu, 05 Sep 2024 14:32:04 -0000</lastBuildDate> <ttl>1440</ttl> <generator>MkDocs RSS plugin - v1.8.0</generator> <image> <url>https://git.noc.ruhr-uni-bochum.de/makerspace/homepage/-/raw/main/docs/medien/rub-makerspace-logo.svg</url> <title>RUB-MAKERSPACE</title><link>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/</link> </image> </channel></rss> \ No newline at end of file +<rss xmlns:ns0="http://www.w3.org/2005/Atom" version="2.0"> <channel><title>RUB-MAKERSPACE</title><description>Die offene Werkstatt an der RUB</description><link>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/</link><ns0:link href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/feed_rss_created.xml" rel="self" type="application/rss+xml" /><language>en-None</language> <pubDate>Mon, 09 Sep 2024 12:48:24 -0000</pubDate> <lastBuildDate>Mon, 09 Sep 2024 12:48:24 -0000</lastBuildDate> <ttl>1440</ttl> <generator>MkDocs RSS plugin - v1.8.0</generator> <image> <url>https://git.noc.ruhr-uni-bochum.de/makerspace/homepage/-/raw/main/docs/medien/rub-makerspace-logo.svg</url> <title>RUB-MAKERSPACE</title><link>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/</link> </image> </channel></rss> \ No newline at end of file diff --git a/public/feed_rss_updated.xml b/public/feed_rss_updated.xml index 038292479..e87cf1e54 100644 --- a/public/feed_rss_updated.xml +++ b/public/feed_rss_updated.xml @@ -1,2 +1,2 @@ <?xml version='1.0' encoding='utf-8'?> -<rss xmlns:ns0="http://www.w3.org/2005/Atom" version="2.0"> <channel><title>RUB-MAKERSPACE</title><description>Die offene Werkstatt an der RUB</description><link>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/</link><ns0:link href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/feed_rss_updated.xml" rel="self" type="application/rss+xml" /><language>en-None</language> <pubDate>Thu, 05 Sep 2024 14:32:04 -0000</pubDate> <lastBuildDate>Thu, 05 Sep 2024 14:32:04 -0000</lastBuildDate> <ttl>1440</ttl> <generator>MkDocs RSS plugin - v1.8.0</generator> <image> <url>https://git.noc.ruhr-uni-bochum.de/makerspace/homepage/-/raw/main/docs/medien/rub-makerspace-logo.svg</url> <title>RUB-MAKERSPACE</title><link>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/</link> </image> </channel></rss> \ No newline at end of file +<rss xmlns:ns0="http://www.w3.org/2005/Atom" version="2.0"> <channel><title>RUB-MAKERSPACE</title><description>Die offene Werkstatt an der RUB</description><link>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/</link><ns0:link href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/feed_rss_updated.xml" rel="self" type="application/rss+xml" /><language>en-None</language> <pubDate>Mon, 09 Sep 2024 12:48:24 -0000</pubDate> <lastBuildDate>Mon, 09 Sep 2024 12:48:24 -0000</lastBuildDate> <ttl>1440</ttl> <generator>MkDocs RSS plugin - v1.8.0</generator> <image> <url>https://git.noc.ruhr-uni-bochum.de/makerspace/homepage/-/raw/main/docs/medien/rub-makerspace-logo.svg</url> <title>RUB-MAKERSPACE</title><link>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/</link> </image> </channel></rss> \ No newline at end of file diff --git a/public/info_monitor_autoswitch.html b/public/info_monitor_autoswitch.html new file mode 100644 index 000000000..b4474ccb2 --- /dev/null +++ b/public/info_monitor_autoswitch.html @@ -0,0 +1,208 @@ +<!DOCTYPE html> +<html lang="de"> + +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Infomonitor</title> + <script src="javascripts/ical.js"></script> + <!-- calls ical.js library to parse the ics-data from the calendar file into data the fullcalendar-library can work with --> + <script src="javascripts/index.global.min.js"></script> <!-- calls the fullcalendar.js library --> + <link rel="stylesheet" href="stylesheets/main.css"> + <!-- this calls the variables holding the "core"-Design for the entire Website like colors-codes etc. --> + <link rel="stylesheet" href="stylesheets//components/calender.css"> + <!-- this calls the specific Design for the calendar, and can use the variables of the file above --> +</head> + +<body> + <style> + html { + overflow-y: scroll; + width: 100%; + height: auto; + aspect-ratio: 9/16; + } + + body { + width: 100%; + height: 100%; + overflow: hidden scroll; + font-size: 66px; + background: rgb(244, 123, 138); + background: linear-gradient(135deg, rgba(244, 123, 138, 1) 0%, rgba(44, 63, 96, 1) 100%); + } + + .page { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + opacity: 0; + transition: opacity 1s ease; + overflow: hidden scroll; + display: none; + /* Start with all pages not displayed */ + } + + /* Initial visibility */ + #page1 { + opacity: 1; + /* Show first page initially */ + background: white; + } + + /* Hidden by default */ + #page2 { + display: none; + } + + /* Hidden by default */ + #page3 { + display: none; + } + + .header-logo { + margin-bottom: 4%; + width: calc((var(--header-logo-height) * var(--header-logo-factor)) * 3); + height: calc(var(--header-logo-height) * 3); + } + + .qr-code { + position: relative; + left: 50%; + transform: translateX(-50%) scale(3); + transform-origin: top; + } + + p { + line-height: 180%; + } + + p strong { + color: rgb(var(--rub-blau)); + } + + .im-footer { + display: flex; + flex-direction: row; + align-items: flex-start; + justify-content: space-between; + margin: 2.5em 0 0 0; + } + + .im-footer div { + max-width: 45%; + } + + .dev-tools-wrapper { + display: flex; + justify-content: center; + width: 100%; + position: fixed; + top: 0; + left: 0; + background-color: rgba(0, 0, 0, 0.8); + box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); + z-index: 8; + padding: 10px; + color: white; + } + + .font-size-input { + width: 100%; + text-align: center; + } + + .font-size-input input { + padding: 5px; + font-size: 1em; + border: none; + border-radius: 4px; + } + + #imContent { + padding: 5%; + } + + .fc .fc-list-table { + pointer-events: none; + } + + .aquarium { + width: 100%; + height: 100%; + object-fit: cover; + /* Ensure the image covers the screen without distortion */ + } + </style> + <div id="page1" class="page"> + <div id="imContent"> + <div class="calendar-wrapper"> + <div class="header-logo" alt="logo"></div> + <div id='form-container'></div> <!-- this div holds the contact form --> + <div id='calendar' style="border: none;"></div> <!-- this div holds the calendar --> + </div> + <div class="im-footer"> + <div> + <p>Besuche unsere Webseite unter <br> <strong>https://makerspace.ruhr-uni-bochum.de/</strong> + <br>oder scanne + einfach den QR-Code</p> + <img class="qr-code" src="/medien/qr_code.png"></img> + </div> + <div> + <p>Kontaktiere uns<br> + E-Mail: <strong>makerspace@rub.de</strong><br> + Tel: 0234 32 26088 + </p> + </div> + </div> + </div> + </div> + <div id="page2" class="page"> + <img class="aquarium" src="/medien/makerspace-logo-willkommen.png" style="width:100%; height:auto;"></img> + </div> + <div id="page3" class="page"> + <img class="aquarium" src="/medien/visionen.jpg"></img> + </div> + <script src="javascripts/ics_calendar.js"></script> + <!-- this calls the js that is responsible for everything around the calendar and contact form --> + <script> + document.addEventListener("DOMContentLoaded", function () { + var page1 = document.getElementById('page1'); + var page2 = document.getElementById('page2'); + var page3 = document.getElementById('page3'); + + // Initialize pages correctly + page1.style.display = 'block'; + page1.style.opacity = 1; + + function switchPage(currentPage, nextPage) { + nextPage.style.display = 'block'; // Ensure next page is ready to fade in + nextPage.style.opacity = 0; // Reset opacity to trigger transition + + setTimeout(function () { + currentPage.style.opacity = 0; // Start fading out current page + nextPage.style.opacity = 1; // Start fading in next page + }, 100); // Short delay to ensure the opacity change triggers + + setTimeout(function () { + currentPage.style.display = 'none'; // Hide current page after transition + }, 1100); // Set this to slightly longer than the CSS transition to ensure it completes + } + + // Function to cycle through the pages + function cyclePages() { + setTimeout(function () { switchPage(page1, page2); }, 12000); // Page 1 to 2 after 12 seconds + setTimeout(function () { switchPage(page2, page3); }, 18000); // Page 2 to 3 after 6 seconds + setTimeout(function () { switchPage(page3, page1); }, 24000); // Page 3 to 1 after 6 seconds + } + + cyclePages(); // Start the cycle + setInterval(cyclePages, 24000); // Repeat every 24 seconds (12s + 6s + 6s) + }); + </script> +</body> + +</html> \ No newline at end of file diff --git a/public/ms-nutzen/index.html b/public/ms-nutzen/index.html index fd2e03456..faffd5570 100644 --- a/public/ms-nutzen/index.html +++ b/public/ms-nutzen/index.html @@ -971,7 +971,7 @@ https://github.com/squidfunk/mkdocs-material/blob/master/src/partials/source-fil <!-- mkdocs-git-revision-date-localized-plugin --> Letztes Update: - <span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_date">2024-09-02</span> + <span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_date">2024-09-05</span> / Erstellt: diff --git a/public/ort/index.html b/public/ort/index.html index 09ef99445..e1ead3d3d 100644 --- a/public/ort/index.html +++ b/public/ort/index.html @@ -1176,7 +1176,7 @@ https://github.com/squidfunk/mkdocs-material/blob/master/src/partials/source-fil <!-- mkdocs-git-revision-date-localized-plugin --> Letztes Update: - <span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_date">2024-09-02</span> + <span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_date">2024-09-05</span> / Erstellt: diff --git a/public/sitemap.xml b/public/sitemap.xml index 94f755258..639886782 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -2,499 +2,499 @@ <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/anl/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/anl/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/coworking/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/coworking/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/danke/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/danke/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/designlabor/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/designlabor/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/digitallabor/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/digitallabor/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/dk/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/dk/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/drittmittelprojekte/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/drittmittelprojekte/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/eb/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/eb/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/en/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/en/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/fkb/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/fkb/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/form/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/form/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/gki/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/gki/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/holzwerkstatt/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/holzwerkstatt/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/icons/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/icons/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/impressum/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/impressum/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/kalender/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/kalender/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/keramikwerkstatt/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/keramikwerkstatt/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/kontakt/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/kontakt/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/kuechenlabor/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/kuechenlabor/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/kunststoffwerkstatt/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/kunststoffwerkstatt/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/lager/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/lager/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/medienlabor/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/medienlabor/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/metallbauwerkstatt/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/metallbauwerkstatt/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/mir/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/mir/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/mobil/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/mobil/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/ms-nutzen/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/ms-nutzen/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/news/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/news/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/opendata/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/opendata/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/organisation/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/organisation/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/ort/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/ort/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/partner-innen/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/partner-innen/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/projekte/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/projekte/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/projektraeume/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/projektraeume/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit_regeln/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit_regeln/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/slides/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/slides/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/status/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/status/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/team/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/team/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/textillabor/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/textillabor/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/th/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/th/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisung-allgemeine/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisung-allgemeine/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisung-digitallabor/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisung-digitallabor/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisung-fdm/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisung-fdm/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisung-laser/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisung-laser/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisung-shaper/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisung-shaper/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisungen/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/unterweisungen/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/wasserschaden/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/wasserschaden/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/ws-3d-scan/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/ws-3d-scan/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/ws-luftdaten/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/ws-luftdaten/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/ws-microcontroller/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/ws-microcontroller/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_oeffentlichkeit/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_oeffentlichkeit/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_privat/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_privat/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_rub_intern/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_rub_intern/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_rub_startup/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_rub_startup/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_startup_extern/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_startup_extern/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_unternehmen/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/zielgruppe_unternehmen/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/javascripts/pannellum/changelog/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/javascripts/pannellum/changelog/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/javascripts/pannellum/readme/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/javascripts/pannellum/readme/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/news-entwuerfe/news-vorlage/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/news-entwuerfe/news-vorlage/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-2/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-2/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-computerraum/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-computerraum/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-desktop-cnc/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-desktop-cnc/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-digitallabor/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-digitallabor/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-entsorgung/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-entsorgung/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-footer/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-footer/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-gefahrstoffe/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-gefahrstoffe/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-handmaschinen-akku/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-handmaschinen-akku/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-handmaschinen-kabelgebunden/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-handmaschinen-kabelgebunden/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-handwerkzeug/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-handwerkzeug/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-it-edv/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-it-edv/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-kunststoff-schweissen/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-kunststoff-schweissen/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-loeten/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-loeten/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-nutzendendaten-fabman/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-nutzendendaten-fabman/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-ofen/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-ofen/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-platinendrucker/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-platinendrucker/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-sicheres-arbeiten/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-sicheres-arbeiten/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-sla/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-sla/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-sls/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-sls/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-template-2/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-template-2/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-template/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-template/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-tiefziehen/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-tiefziehen/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-vakuumguss/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba-vakuumguss/"/> </url> <url> <loc>https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba_g-isopropanol/</loc> - <lastmod>2024-09-05</lastmod> + <lastmod>2024-09-09</lastmod> <changefreq>daily</changefreq> <xhtml:link rel="alternate" hreflang="de" href="https://test-ms-boehntxp-a762342731fc2e4f5ac31921f2de1d2c94efb6952110ae.io.noc.ruhr-uni-bochum.de/sicherheit/ba_g-isopropanol/"/> </url> diff --git a/public/sitemap.xml.gz b/public/sitemap.xml.gz index e078c05a0f4f686c105db67178d2e6715087955b..f067ebcac28b3df91a09cf8b56e2c038c90a8040 100644 GIT binary patch delta 1264 zcmV<M1P}YS3bqP=ABzYGo$lUd0{?SqbY*Q}a4vXlYyj<@+j8PY5QgvfDJbrR40v~g z%VzKP36g87CAFkkjb^lS0LM?C)*(h<?BphuPIX*%*}};1f1gJqW?IAJx93(bj_ACy z=4rWJ-7Obra$6`<JuQFx^?UNm^4tE?V|3bMSkRq~e_GamA#@LEdODp}UIlES^DFDB z)aNyA_;k84y<6>;<3111b!hd)o~P}w&w97prNeKR`%eq{=pSqRY1q;>-}ifY+AW|D zN$Zo$Vr{~6m%!IAo9+GP>vmn{8@w++L%v<_HtTXz;JVo4yL&9NFT2m1_4*EQrR>Vs zeC1;8l4ulv{hhpy?W(}^G3_5`_Nd@PYm5EnZgZd9?dX&4G2M2)S6+juuypuyUx3oT zKc=%=&UYKqJ!oZ`g+qb>I-oNUaJi@*mKu82#k4gt`e)NF(+PF@%KBfS4n_+j-zVlm zKes3A8fxgm9Gr7=F;ReNq#c9C%xnyxSC!F_StreZ!z?))8>&(Pv`8KE=xls6(kwK5 z*gF+MOJArvXMbQ5#Pt+62yn53nJ^g?m<@X)jlE&RzHFrZ<M)Z#(6_FYhQE)@g@4s3 zVfg#RT<F(UznsuDK0pY<JX~hyVnpTEcwr{S%xny_okQ=Vv~J;?n~RACG@1gXja$6N zX5#^W9ki;E+EKiT&&G>20UB{SrqpaKM5MV|kptcr(fRl=KKNkEQtSci1_3U1G*sd` z^f5CR11%Ox=HY6doR5uuiYkLB^<Z@a02?<-TnkZ*T87P(w3?<dGaCawF)_S|n;bgl z=3>I&N!p;`5Sa^q+tG*&1Q6!nH8vX$t^%WfJOnDSmgZs}osW+oP6MCw(+*rP=n`d& zxIX$aI~yZ1%gWf*l1)#@0mfFSj43-8BVN%+v8z#qgTo57wByy={A|o<MTP6qbc~_d zIG}N_D9*tcnu~*gAg$zMh|Guob5J5LRGBAdW22TPp=QHA8e(xm<)f(*njERHMP;Oa zoyWdMfu$wEm)X6~fu*UkXeA5k<FoWayis)183C|#<7?<-%b5spv?Ffl_bNOWCnxaK zfN9+xD8wnb%+AJ$Pqszka}cNF9GsC09m_zo$tcjqIXWXBt;(IHORs{nT8r!6Zvf!p z=0%~dT<khLSS(94LDTF(Lvshh9DM+Pf}yL<sUrwhH05V##>MQQ`m;tO*UpRqQ$sW# z<U;IZEBX@xLr2q7JJ4)}=$3TFfuX746|%v)MZucp5V$z{0Y~t;Q(f>>!A7NPTGRFR zBU){xtseSUG<aKc2!*)fvJX*kx>_Qk7YnC|uADZH*7cWR3cQHoJrevX1Jevwl8xB9 zz%e~fE4gjENTeKyTNdX75IkK`U1Jk$m*gfFt!mDJsVTWdBOid^>54j0PnTdtaZCKa zi-D)7(%OKsThoMqryqg|wHp?vLD7~jK=5=$R112OPXsU&97S825b*SKUKNijqw2nX z&<j5vlamB3b~<4#T+AEcLmSsDcp4kG&?n$Bx=DD`dP{?;H4U;oX<%!{3peALnxXe5 z?+?i+eA<47fw!msEkWQq+8z{^RK8dXKV6t%;OXfIO^j_7z3fhDhJmH0LzO6RX)!!1 aQ?y#Lsw)y#wuWyW!~PFFn6dT1ga80~Ds~+J delta 1265 zcmV<N1P=SQ3bzV>ABzYG>cH7%0{?SqbY*Q}a4vXlYyj<@+fw635QgvfDO|pn<pb=- z6nO9Q1j)6lCAFkkjb@ZN*o3D~>kur1A-PGVQyr=(kdd(e?_)IbOlx@j{@m)t37uEg zJS{h?^>TqGw}mp*)AH9}eolT`em{J9j81zD3)<QEr)3>~LidoS=ks~xRlpWHzp}1M zeO}XsPp1dd^=iKyk9l~mL#wZjJnx2MHv9cP9e%nzd|A*(|6JpD!<M%Bp+CygVF7(e zTAySVYZIQk1ipRU?(VkVcAGNa;$3+U`EIk{Zpv+en_`>q@373i?(eso%^Gl}?8?}D z<znrUXcYZ_p1h9js=)Ly?Vo4%tl&dyi^F!ky-U{nWPMM2Opjgm%4;wcmJWYA6rl9) zkLm1@%Wgxu2dzxAa7Yk92XqDkE*G`KQbW(Wn6^en|7_Z2I-yQqS^q24!DwOR`@~%6 z=k{z}Lk(S+gG+8MCJHc(v~$pynT-MTsxlff>!f*qm?dXpLscq(7O7(%osEx1nuUfB zd#6HZ=@WJ5><?^$xSrw$0WNkh6DETKvte(fu{UhkmyNVP{5~-o`qs75@b{6q@UI#r z41b@P3;o*amovJ?2M9r!hwJQIjHuiiFU-W4nT>(AbLf4P)-7Ceb1~6?MpK})af{d3 zY&@WUgH|<CJBoMl*?6%gKqF4al$wo&h%{F#a=`m4Iv*d#2On%%ialZ7Ai%|rhDuzA zK4#`(pv6MTJYCI`^RdxSQDqRNo~&*FVB<!KYaxnJ%dnY}R?{?QW@Er7CWaSrlS7x> zTuc}|OB)m%B6HzyI~tLJ0Ky!+#%ANeRbZ5Vhd?FP(p=1=^YIbHY2b5x+JOrOU80N; z*GFGxXJbTWSsA-pvgrjmz}O0vF=gjs#48#pb~UPSbXcL5cD{O_pN$!<sBm4HjxjVF z2Q=;##W@&5b8!$5q?LROk@@g{4oc*WD)Z!QY}C>u)NI&CLoCjyd^A-;lOq+jsEo9K z>)4Mdu(TxjHoK2GuryT`tz<!ce3o8_H;QgLBLJ3ed<~s!ITHbncEk<+z6sC8$r(H~ zU|P2a3UNxVv$HYclU<Sc9K`9k1ZU(z$1>1tG77YDiO$GJt8!=Q)~n#G*5bPN8vwYt zc~Ph<7rPFR7RwS%&@_9{(A<GAN1uRyVCbrI>I8xnP5Bv`aWOlp{;JW)wKHSD)DX=F zxez<qivEPa(9!hLjx<{#x+T5gz|hq24%uMcqF_yP2wWWffD`!KsV;b`V58DCt?7RI z5v{h;RuBCv8oaGJghE_#*{3Kt-7S&On}u^kS5BKJ>-yU;1>QvQ5ea^kfoTR;$yRJ# z;FzALmE5*nBvKB<EsOIB2%fH}uCWQWOLCKoRyF6q)Rf$!kxxMIbVZ%0r(3Y1xF!BS z#K6;2X>CB+t!YBQ(+|Of+6{}-plC~1Ab7eWss;U%PXsU&oJ3oi5b*SKSrv~eqw2nX z&<j5wlamB3ce-FLT+AEcLmO{d@H94Vp-;eN^pNnT^_~V(YZ_#G(!kb?7jDKgHADZK zygwzQ@M-%Q2Hu|jw*-OfXnRmtQu$&n{BmK2fv2YvG%>bS^s+mp83vY~j#Z+(rN!{5 bOwnq|s@{-zV{7>0F&zE?Os@<+z=Qw*aXEUS diff --git a/public/zielgruppe_startup_extern/index.html b/public/zielgruppe_startup_extern/index.html index 2a724e8d9..c1289cacf 100644 --- a/public/zielgruppe_startup_extern/index.html +++ b/public/zielgruppe_startup_extern/index.html @@ -790,7 +790,7 @@ https://github.com/squidfunk/mkdocs-material/blob/master/src/partials/source-fil <!-- mkdocs-git-revision-date-localized-plugin --> Letztes Update: - <span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_date">2024-09-03</span> + <span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_date">2024-09-05</span> / Erstellt: -- GitLab