Help
RSS
API
Feed
Maltego
Contact
Domain > www.hotel-kreuz.de
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2014-12-02
82.165.116.110
(
ClassC
)
2024-12-28
217.160.0.96
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyContent-Type: text/html; charsetiso-8859-1Content-Length: 235Connection: keep-aliveKeep-Alive: timeout15Date: Sat, 28 Dec 2024 05:16:03 GMTServer: ApacheLocation: https://www.hotel-kreuz.de/ !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN>html>head>title>301 Moved Permanently/title>/head>body>h1>Moved Permanently/h1>p>The document has moved a hrefhttps://www.hotel-kreuz.de/>here/a>./p>/body>/html>
Port 443
HTTP/1.1 200 OKContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveKeep-Alive: timeout15Date: Sat, 28 Dec 2024 05:16:03 GMTServer: ApacheCache-Control: no-cacheWPO-Cache-Status: cachedLast-Modified: Sat, 28 Dec 2024 04:04:27 GMT !doctype html>html langde >head> meta charsetUTF-8 /> meta nameviewport contentwidthdevice-width, initial-scale1.0 /> link mediaall hrefhttps://www.hotel-kreuz.de/wp-content/cache/autoptimize/css/autoptimize_0914aeec7cebd00c08c97745817d0ec5.css relstylesheet>link mediaprint hrefhttps://www.hotel-kreuz.de/wp-content/cache/autoptimize/css/autoptimize_f637c8737ec7525695a5301f7a69ccd9.css relstylesheet>title>Kreuz Mattenhaus – Hotel-Landgasthof/title>meta namerobots contentmax-image-preview:large /> link reldns-prefetch href//www.hotel-kreuz.de />link relalternate typeapplication/rss+xml titleKreuz Mattenhaus » Feed hrefhttps://www.hotel-kreuz.de/feed/ />link relalternate typeapplication/rss+xml titleKreuz Mattenhaus » Kommentar-Feed hrefhttps://www.hotel-kreuz.de/comments/feed/ />script>window._wpemojiSettings {baseUrl:https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/,ext:.png,svgUrl:https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/,svgExt:.svg,source:{wpemoji:https:\/\/www.hotel-kreuz.de\/wp-includes\/js\/wp-emoji.js,twemoji:https:\/\/www.hotel-kreuz.de\/wp-includes\/js\/twemoji.js}};/** * @output wp-includes/js/wp-emoji-loader.js *//** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback *//** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji *//** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise undefined ) { return; } var sessionStorageKey wpEmojiSettingsSupports; var tests flag, emoji ; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker ! undefined && typeof OffscreenCanvas ! undefined && typeof URL ! undefined && URL.createObjectURL && typeof Blob ! undefined ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item object && typeof item.timestamp number && new Date().valueOf() item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests object ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data rendered2 index ; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of flag or emoji. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case flag: /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesnt render it correctly (white flag emoji + transgender symbol). */ isIdentical emojiSetsRenderIdentically( context, \uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F, // as a zero-width joiner sequence \uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesnt render it correctly (U + N). */ isIdentical emojiSetsRenderIdentically( context, \uD83C\uDDFA\uD83C\uDDF3, // as the sequence of two code points \uD83C\uDDFA\u200B\uD83C\uDDF3 // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesnt render it correctly (black flag emoji + G + B + E + N + G). */ isIdentical emojiSetsRenderIdentically( context, // as the flag sequence \uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F, // with each code point separated by a zero-width space \uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F ); return ! isIdentical; case emoji: /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) Bird * 0x200D Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical emojiSetsRenderIdentically( context, \uD83D\uDC26\u200D\u2B1B, // as the zero-width joiner sequence \uD83D\uDC26\u200B\u2B1B // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope ! undefined && self instanceof WorkerGlobalScope ) { canvas new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas document.createElement( canvas ); } var context canvas.getContext( 2d, { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesnt work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline top; context.font 600 32px Arial; var supports {}; tests.forEach( function ( test ) { supports test browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script document.createElement( script ); script.src src; script.defer true; document.head.appendChild( script ); } settings.supports { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise new Promise( function ( resolve ) { document.addEventListener( DOMContentLoaded, resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript postMessage( + testEmojiSupports.toString() + ( + JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() .join( , ) + ));; var blob new Blob( workerScript , { type: text/javascript } ); var worker new Worker( URL.createObjectURL( blob ), { name: wpTestEmojiSupports } ); worker.onmessage function ( event ) { supportTests event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports test supportTests test ; settings.supports.everything settings.supports.everything && settings.supports test ; if ( flag ! test ) { settings.supports.everythingExceptFlag settings.supports.everythingExceptFlag && settings.supports test ; } } settings.supports.everythingExceptFlag settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady false; settings.readyCallback function () { settings.DOMReady true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } );} )( window, document, window._wpemojiSettings );/script>link relstylesheet iduaf_client_css-css hrefhttps://www.hotel-kreuz.de/wp-content/cache/autoptimize/css/autoptimize_single_6dc88006e4303420fd83d925dc9cb957.css mediaall />link relstylesheet idelementor-post-125-css hrefhttps://www.hotel-kreuz.de/wp-content/cache/autoptimize/css/autoptimize_single_d64481a6b416925eee2a8e80c6d5381b.css mediaall />link relstylesheet idelementor-post-6-css hrefhttps://www.hotel-kreuz.de/wp-content/cache/autoptimize/css/autoptimize_single_e505f74820744bc748ed3700e4e9dfbf.css mediaall />script srchttps://www.hotel-kreuz.de/wp-includes/js/dist/vendor/wp-polyfill.js idwp-polyfill-js>/script>script srchttps://www.hotel-kreuz.de/wp-content/plugins/gutenberg/build/hooks/index.min.js idwp-hooks-js>/script>script srchttps://www.hotel-kreuz.de/wp-content/plugins/gutenberg/build/i18n/index.min.js idwp-i18n-js>/script>script idwp-i18n-js-after>wp.i18n.setLocaleData( { text direction\u0004ltr: ltr } );/script>script srchttps://www.hotel-kreuz.de/wp-includes/js/jquery/jquery.js idjquery-core-js>/script>script srchttps://www.hotel-kreuz.de/wp-includes/js/jquery/jquery-migrate.js idjquery-migrate-js>/script>script idcookie-law-info-js-extra>var Cli_Data {nn_cookie_ids:,cookielist:,non_necessary_cookies:,ccpaEnabled:,ccpaRegionBased:,ccpaBarEnabled:,strictlyEnabled:necessary,obligatoire,ccpaType:gdpr,js_blocking:1,custom_integration:,triggerDomRefresh:,secure_cookies:};var cli_cookiebar_settings {animate_speed_hide:500,animate_speed_show:500,background:#FFF,border:#b1a6a6c2,border_on:,button_1_button_colour:#006900,button_1_button_hover:#005400,button_1_link_colour:#fff,button_1_as_button:1,button_1_new_win:,button_2_button_colour:#333,button_2_button_hover:#292929,button_2_link_colour:#444,button_2_as_button:,button_2_hidebar:,button_3_button_colour:#3566bb,button_3_button_hover:#2a5296,button_3_link_colour:#fff,button_3_as_button:1,button_3_new_win:,button_4_button_colour:#000,button_4_button_hover:#000000,button_4_link_colour:#333333,button_4_as_button:,button_7_button_colour:#006900,button_7_button_hover:#005400,button_7_link_colour:#fff,button_7_as_button:1,button_7_new_win:,font_family:inherit,header_fix:,notify_animate_hide:1,notify_animate_show:,notify_div_id:#cookie-law-info-bar,notify_position_horizontal:right,notify_position_vertical:bottom,scroll_close:,scroll_close_reload:,accept_close_reload:,reject_close_reload:,showagain_tab:,showagain_background:#fff,showagain_border:#000,showagain_div_id:#cookie-law-info-again,showagain_x_position:100px,text:#333333,show_once_yn:,show_once:10000,logging_on:,as_popup:,popup_overlay:1,bar_heading_text:,cookie_bar_as:banner,popup_showagain_position:bottom-right,widget_position:left};var log_object {ajax_url:https:\/\/www.hotel-kreuz.de\/wp-admin\/admin-ajax.php};/script>script srchttps://www.hotel-kreuz.de/wp-content/plugins/cookie-law-info/legacy/public/js/cookie-law-info-public.js idcookie-law-info-js>/script>script idtwenty-twenty-one-ie11-polyfills-js-after>( Element.prototype.matches && Element.prototype.closest && window.NodeList && NodeList.prototype.forEach ) || document.write( script srchttps://www.hotel-kreuz.de/wp-content/themes/twentytwentyone/assets/js/polyfills.js>/scr + ipt> );/script>script srchttps://www.hotel-kreuz.de/wp-content/themes/twentytwentyone/assets/js/primary-navigation.js idtwenty-twenty-one-primary-navigation-script-js defer data-wp-strategydefer>/script>link relhttps://api.w.org/ hrefhttps://www.hotel-kreuz.de/wp-json/ />link relalternate titleJSON typeapplication/json hrefhttps://www.hotel-kreuz.de/wp-json/wp/v2/pages/6 />link relEditURI typeapplication/rsd+xml titleRSD hrefhttps://www.hotel-kreuz.de/xmlrpc.php?rsd />meta namegenerator contentWordPress 6.7.1 />link relcanonical hrefhttps://www.hotel-kreuz.de/ />link relshortlink hrefhttps://www.hotel-kreuz.de/ />link relalternate titleoEmbed (JSON) typeapplication/json+oembed hrefhttps://www.hotel-kreuz.de/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Fwww.hotel-kreuz.de%2F />link relalternate titleoEmbed (XML) typetext/xml+oembed hrefhttps://www.hotel-kreuz.de/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Fwww.hotel-kreuz.de%2F&formatxml />!-- start Simple Custom CSS and JS -->!-- end Simple Custom CSS and JS -->!-- start Simple Custom CSS and JS --> link relstylesheet hrefhttps://kunden.gastro.digital/widgets/styles.css /> script srchttps://kunden.gastro.digital/widgets/elements.js>/script>!-- end Simple Custom CSS and JS -->!--Customizer CSS--> !--/Customizer CSS-->noscript>style>.tw-block-animation{opacity:1;transform:none;clip-path:none;}/style>/noscript>meta namegenerator contentElementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto> link relicon hrefhttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/cropped-Kreuz-Logo-2020-Kopie-32x32.jpg sizes32x32 />link relicon hrefhttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/cropped-Kreuz-Logo-2020-Kopie-192x192.jpg sizes192x192 />link relapple-touch-icon hrefhttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/cropped-Kreuz-Logo-2020-Kopie-180x180.jpg />meta namemsapplication-TileImage contenthttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/cropped-Kreuz-Logo-2020-Kopie-270x270.jpg /> /head>body classhome page-template-default page page-id-6 custom-background wp-embed-responsive is-light-theme has-background-white no-js singular has-main-navigation no-widgets elementor-default elementor-kit-125 elementor-page elementor-page-6 tw-header-layout-stack-center tw-header-full tw-header-sticky tw-header-bg tw-header-break-mobile tw-header-padding-large tw-nav-spacing-large tw-no-meta-label tw-title-no-border>div idpage classsite> a classskip-link screen-reader-text href#content> Zum Inhalt springen /a> header idmasthead classsite-header has-menu> div classsite-branding> h1 classscreen-reader-text>Kreuz Mattenhaus/h1> /div>!-- .site-branding --> nav idsite-navigation classprimary-navigation aria-labelHauptmenü> div classmenu-button-container> button idprimary-mobile-menu classbutton aria-controlsprimary-menu-list aria-expandedfalse> span classdropdown-icon open>Menü svg classsvg-icon width24 height24 aria-hiddentrue roleimg focusablefalse viewBox0 0 24 24 fillnone xmlnshttp://www.w3.org/2000/svg>path fill-ruleevenodd clip-ruleevenodd dM4.5 6H19.5V7.5H4.5V6ZM4.5 12H19.5V13.5H4.5V12ZM19.5 18H4.5V19.5H19.5V18Z fillcurrentColor/>/svg> /span> span classdropdown-icon close>Schließen svg classsvg-icon width24 height24 aria-hiddentrue roleimg focusablefalse viewBox0 0 24 24 fillnone xmlnshttp://www.w3.org/2000/svg>path fill-ruleevenodd clip-ruleevenodd dM12 10.9394L5.53033 4.46973L4.46967 5.53039L10.9393 12.0001L4.46967 18.4697L5.53033 19.5304L12 13.0607L18.4697 19.5304L19.5303 18.4697L13.0607 12.0001L19.5303 5.53039L18.4697 4.46973L12 10.9394Z fillcurrentColor/>/svg> /span> /button>!-- #primary-mobile-menu --> /div>!-- .menu-button-container --> div classprimary-menu-container>ul idprimary-menu-list classmenu-wrapper>li idmenu-item-1217 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-6 current_page_item menu-item-1217>a hrefhttps://www.hotel-kreuz.de/ aria-currentpage>Startseite/a>/li>li idmenu-item-1179 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1179>a hrefhttps://www.hotel-kreuz.de/blog/>News/a>/li>li idmenu-item-4737 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-4737>a hrefhttps://www.hotel-kreuz.de/speisekarte-2-0/>Speisekarte/a>/li>li idmenu-item-1168 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1168>a hrefhttps://www.hotel-kreuz.de/tisch-reservieren/>Tisch reservieren/a>/li>li idmenu-item-4259 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-4259>a hrefhttps://ibev5.hotels-online-buchen.de/ibe/kreuzbadwaldsee>Zimmer buchen/a>/li>li idmenu-item-1259 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-1259>a hreftel:+49752497570>+49 7524 97 570/a>/li>/ul>ul classheader-actions>li idmenu-item-1260 classmenu-item menu-item-type-custom menu-item-object-custom social-item menu-item-1260>a hrefmailto:info@hotel-kreuz.de>svg classsvg-icon width24 height24 aria-hiddentrue roleimg focusablefalse viewBox0 0 24 24 version1.1 xmlnshttp://www.w3.org/2000/svg>path dM20,4H4C2.895,4,2,4.895,2,6v12c0,1.105,0.895,2,2,2h16c1.105,0,2-0.895,2-2V6C22,4.895,21.105,4,20,4z M20,8.236l-8,4.882 L4,8.236V6h16V8.236z>/path>/svg>span classscreen-reader-text>svg classsvg-icon width24 height24 aria-hiddentrue roleimg focusablefalse viewBox0 0 24 24 version1.1 xmlnshttp://www.w3.org/2000/svg>path dM20,4H4C2.895,4,2,4.895,2,6v12c0,1.105,0.895,2,2,2h16c1.105,0,2-0.895,2-2V6C22,4.895,21.105,4,20,4z M20,8.236l-8,4.882 L4,8.236V6h16V8.236z>/path>/svg>span classscreen-reader-text>/span>/a>/li>/ul>/div> /nav>!-- #site-navigation --> /header>!-- #masthead --> div idcontent classsite-content> div idprimary classcontent-area> main idmain classsite-main>article idpost-6 classpost-6 page type-page status-publish hentry entry> div classentry-content> div data-elementor-typewp-page data-elementor-id6 classelementor elementor-6> section classelementor-section elementor-top-section elementor-element elementor-element-cd147b2 elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default data-idcd147b2 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-291325f data-id291325f data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-5b41053f elementor-widget elementor-widget-spacer data-id5b41053f data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> div classelementor-element elementor-element-8a014ed elementor-widget elementor-widget-image data-id8a014ed data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img decodingasync width300 height137 srchttps://www.hotel-kreuz.de/wp-content/uploads/2021/04/cropped-Kreuz-Logo-2020-Kopie-300x137.jpg classattachment-medium size-medium wp-image-70 alt srcsethttps://www.hotel-kreuz.de/wp-content/uploads/2021/04/cropped-Kreuz-Logo-2020-Kopie-300x137.jpg 300w, https://www.hotel-kreuz.de/wp-content/uploads/2021/04/cropped-Kreuz-Logo-2020-Kopie.jpg 323w sizes(max-width: 300px) 100vw, 300px stylewidth:100%;height:45.51%;max-width:323px /> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-1bfc37d elementor-section-full_width elementor-section-stretched elementor-hidden-phone elementor-section-height-default elementor-section-height-default data-id1bfc37d data-element_typesection data-settings{"stretch_section":"section-stretched"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-81b18fc data-id81b18fc data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-2b7e0f9 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor data-id2b7e0f9 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> div idmetaslider-id-1296 stylewidth: 100%; margin: 0 auto; classml-slider-3-94-0 metaslider metaslider-flex metaslider-1296 ml-slider ms-theme-default nav-hidden roleregion aria-roledescriptionSlideshow aria-labelNeue Slideshow> div idmetaslider_container_1296> div idmetaslider_1296> ul classslides> li styledisplay: block; width: 100%; classslide-1350 ms-image aria-roledescriptionslide aria-labelslide-1350>img fetchpriorityhigh decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/Startseite-1-1920x1080.jpeg height1080 width1920 alt classslider-1296 slide-1350 titleStartseite-1 />/li> li styledisplay: none; width: 100%; classslide-1351 ms-image aria-roledescriptionslide aria-labelslide-1351>img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/Startseite-4-1920x1080.jpeg height1080 width1920 alt classslider-1296 slide-1351 titleStartseite-4 />/li> li styledisplay: none; width: 100%; classslide-1349 ms-image aria-roledescriptionslide aria-labelslide-1349>img loadinglazy decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/Startseite-3-1920x1080.jpeg height1080 width1920 alt classslider-1296 slide-1349 titleStartseite-3 />/li> li styledisplay: none; width: 100%; classslide-1352 ms-image aria-roledescriptionslide aria-labelslide-1352>img loadinglazy decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/Startseite-5-1920x1080.jpeg height1080 width1920 alt classslider-1296 slide-1352 titleStartseite-5 />/li> li styledisplay: none; width: 100%; classslide-1353 ms-image aria-roledescriptionslide aria-labelslide-1353>img loadinglazy decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/Startseite-6-1920x1080.jpeg height1080 width1920 alt classslider-1296 slide-1353 titleStartseite-6 />/li> li styledisplay: none; width: 100%; classslide-1354 ms-image aria-roledescriptionslide aria-labelslide-1354>img loadinglazy decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/Startseite-7-1920x1080.jpeg height1080 width1920 alt classslider-1296 slide-1354 titleStartseite-7 />/li> li styledisplay: none; width: 100%; classslide-1355 ms-image aria-roledescriptionslide aria-labelslide-1355>img loadinglazy decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/2021/05/Startseite-8-1920x1080.jpeg height1080 width1920 alt classslider-1296 slide-1355 titleStartseite-8 />/li> /ul> /div> /div>/div> /div> /div> div classelementor-element elementor-element-5e0371e elementor-align-center elementor-widget__width-initial elementor-absolute elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-button data-id5e0371e data-element_typewidget data-settings{"_animation":"fadeInUp","_position":"absolute"} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-lg hrefhttps://www.hotel-kreuz.de/news/> span classelementor-button-content-wrapper> span classelementor-button-text>NEWS/span> /span> /a> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-c92d086 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-idc92d086 data-element_typesection> div classelementor-container elementor-column-gap-custom> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7e09bb7 data-id7e09bb7 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-cabe639 elementor-align-center elementor-widget__width-initial elementor-absolute elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-button data-idcabe639 data-element_typewidget data-settings{"_animation":"fadeInUp","_position":"absolute"} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-lg hrefhttps://www.hotel-kreuz.de/blog/> span classelementor-button-content-wrapper> span classelementor-button-text>News/span> /span> /a> /div> /div> /div> div classelementor-element elementor-element-2049a8a elementor-align-center elementor-widget__width-initial elementor-absolute elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-button data-id2049a8a data-element_typewidget data-settings{"_animation":"fadeInUp","_position":"absolute"} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-lg hrefhttps://ibev5.hotels-online-buchen.de/ibe/kreuzbadwaldsee> span classelementor-button-content-wrapper> span classelementor-button-text>Zimmer buchen/span> /span> /a> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-dd98523 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-iddd98523 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6a476fa data-id6a476fa data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-b4f7900 elementor-widget elementor-widget-spacer data-idb4f7900 data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-f482a29 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default data-idf482a29 data-element_typesection data-settings{"stretch_section":"section-stretched"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-760bf73 data-id760bf73 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-0c00ecc elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default data-id0c00ecc data-element_typesection data-settings{"stretch_section":"section-stretched"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-568ed70 data-id568ed70 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-feae8f4 elementor-widget elementor-widget-text-editor data-idfeae8f4 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> h3 dirltr data-placeholderÜbersetzung>strong>Dezember im KREUZ:/strong>/h3>p> /p>p>Jahresabschlußfeiern füllen bei uns den Kalender in der Adventszeit. Liebe Leut lehnt euch zurück, lasst den Alltag und die Hektik vor der Tür, freuen Sie sich über das warme Kerzenlicht und über die Weihnachtlichen Menüs./p>p> /p>h3>strong>KREUZ Betriebsurlab /strong>/h3>p> /p>h3>strong>Vom 21.12.2024 bis 12.01.2025 bleibt unser Restaurant GESCHLOSSEN./strong>/h3>h3 dirltr data-placeholderÜbersetzung> /h3>p> /p>h3 dirltr data-placeholderÜbersetzung>strong>Herzlich willkommen bei uns im KREUZ./strong>/h3>p styledisplay: none;>Sponsor des Hotels-a hrefhttp://www.wochenblatt-live.de/slots/>Echtgeld spielautomaten/a> Geld von Vulkan Vegas./p>p>Wir sind ein kleines, heimeliges Hotel mit einem bodenständigen Gasthof oder ein ausgezeichnetes Restaurant mit 21 gemütlichen Gästezimmern. Wie immer Sie es drehen, wir sind Gastgeber durch und durch. Wir kochen mit frischen Lebensmitteln aus der Region und aus dem eigenen Garten. Wir kümmern uns liebevoll um unsere Hotelgäste. Wir betreuen kompetent unsere Tagungsteilnehmer. Wir sind die Familie Schmidt und das KREUZ-Team. Es wäre schön, wenn SIE uns auch besuchen, egal ob zum Übernachten, zum Essen, oder nur auf ein kühles Bier in unserem Biergarten./p>p>Wir sind da und freuen uns auf SIE!/p> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-478cb52 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-id478cb52 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-66f8323 data-id66f8323 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-7049d80 elementor-hidden-phone elementor-widget elementor-widget-spacer data-id7049d80 data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-e349cb9 elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible data-ide349cb9 data-element_typesection data-settings{"animation":"fadeInUp"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dad2685 data-iddad2685 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-29e9b9f elementor-align-center elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-button data-id29e9b9f data-element_typewidget data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-md hrefhttps://www.hotel-kreuz.de/blog/> span classelementor-button-content-wrapper> span classelementor-button-text>News/span> /span> /a> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-e30dd7e elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible data-ide30dd7e data-element_typesection data-settings{"animation":"fadeInUp"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-811fa9c data-id811fa9c data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-a511d0a elementor-align-center elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-button data-ida511d0a data-element_typewidget data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-md hrefhttps://ibev5.hotels-online-buchen.de/ibe/kreuzbadwaldsee> span classelementor-button-content-wrapper> span classelementor-button-text>Zimmer buchen/span> /span> /a> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-a8cd85a elementor-section-stretched elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible data-ida8cd85a data-element_typesection data-settings{"stretch_section":"section-stretched","animation":"fadeIn"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-fd104ba data-idfd104ba data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-436ca71 elementor-hidden-tablet elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-image data-id436ca71 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/ueber-uns/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/menschen-p7zri0kkhscju5rovecyo5nxl7ijd8jkma2sgv083k.jpg titlemenschen altmenschen loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Über uns/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-2ab4a93 data-id2ab4a93 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-183aeb2 elementor-hidden-tablet elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-image data-id183aeb2 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/unser-hotel/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/hotel-p7zrhq8celyeag6pjrw2eq9v1yxi0keiwuwg6tfk00.jpg titlehotel althotel loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Unser Hotel/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-5df0725 data-id5df0725 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-a12da72 elementor-hidden-tablet elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-image data-ida12da72 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttps://portal.gastfreund.net/hotel-landgasthof-kreuz> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/aufenthalt1-p7zrihhnwszpn5344lo8x1e8a5757seqoltj3ub4zk.jpg titleaufenthalt1 altaufenthalt1 loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Ihr Aufenthalt/figcaption> /figure> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-f833416 elementor-section-stretched elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible data-idf833416 data-element_typesection data-settings{"stretch_section":"section-stretched","animation":"fadeIn"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-3841bfb data-id3841bfb data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-4d78a70 elementor-hidden-tablet elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-image data-id4d78a70 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/unsere-kueche/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/kueche-p7zrj33y9ztb267pmd0o0dxty08l4tskfktp57f30g.jpg titlekueche altkueche loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Unsere Küche/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-cb6e3ff data-idcb6e3ff data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-fe4fc6b elementor-hidden-tablet elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-image data-idfe4fc6b data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/vieles-rund-ums-kraut/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/kraut-p7zrhr66lfzom25ceaaoz81bncsv89i98zjxo3e5ts.jpg titlekraut altkraut loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Alles rund ums Kraut/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-3605cd1 data-id3605cd1 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-940281e elementor-hidden-tablet elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-image data-id940281e data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/unser-seminarraum/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/tagung-p7zrhwt7qg7ejpx5hcqge6m37o12ig4n9rgujr5ssg.jpg titletagung alttagung loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Unser Seminarraum/figcaption> /figure> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-ce195c8 elementor-section-stretched elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible data-idce195c8 data-element_typesection data-settings{"stretch_section":"section-stretched","animation":"fadeIn"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-404b5ad data-id404b5ad data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-3a60197 elementor-hidden-tablet elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-image data-id3a60197 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/feiern-bei-uns/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/feiern-p7zriflzj4x4zx5ufkuzs1vb3dgese7a0cik5adxc0.jpg titlefeiern altfeiern loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Feiern bei uns/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-c5a684f data-idc5a684f data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-29fd656 elementor-hidden-tablet elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-image data-id29fd656 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttps://www.hotel-kreuz.de/jahresprogramm-2024/ target_blank> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/MM5_9966-p7zrjud9s6umev4476suip2766i8c1ss7bqs28ao00.jpeg titleMM5_9966 altMM5_9966 loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Unser Jahresprogramm/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e1715df data-ide1715df data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-b9431aa elementor-hidden-tablet elementor-hidden-phone elementor-invisible elementor-widget elementor-widget-image data-idb9431aa data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/gutscheine-geschenke/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/gutscheine-scaled-p7zrirtvzzdv6uo3g8556gsatds6kgjse0zvdvvt34.jpg titlegutscheine altgutscheine loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Gutscheine & Geschenke/figcaption> /figure> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-539aa57 elementor-section-stretched elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible data-id539aa57 data-element_typesection data-settings{"stretch_section":"section-stretched","animation":"fadeIn"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e5e8fa6 data-ide5e8fa6 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-ff72f29 elementor-invisible elementor-widget elementor-widget-image data-idff72f29 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/ueber-uns/> img loadinglazy decodingasync width300 height258 srchttps://www.hotel-kreuz.de/wp-content/uploads/2021/04/menschen-300x258.jpg classattachment-medium size-medium wp-image-60 alt srcsethttps://www.hotel-kreuz.de/wp-content/uploads/2021/04/menschen-300x258.jpg 300w, https://www.hotel-kreuz.de/wp-content/uploads/2021/04/menschen-1024x879.jpg 1024w, https://www.hotel-kreuz.de/wp-content/uploads/2021/04/menschen-768x660.jpg 768w, https://www.hotel-kreuz.de/wp-content/uploads/2021/04/menschen.jpg 1318w sizes(max-width: 300px) 100vw, 300px stylewidth:100%;height:85.89%;max-width:1318px /> /a> figcaption classwidget-image-caption wp-caption-text>Über uns/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4794dcb data-id4794dcb data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-d07394d elementor-invisible elementor-widget elementor-widget-image data-idd07394d data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/unser-hotel/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/hotel-p7zrhq83l3im83ih6uf73x1py18i494px2hev2d9dk.jpg titlehotel althotel loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Unser Hotel/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-48ab25b data-id48ab25b data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-33d6dd5 elementor-invisible elementor-widget elementor-widget-image data-id33d6dd5 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttps://portal.gastfreund.net/hotel-landgasthof-kreuz> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/aufenthalt1-p7zrihhf3ajxksevro7dm86367i5bh4xotehs38ud4.jpg titleaufenthalt1 altaufenthalt1 loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Ihr Aufenthalt/figcaption> /figure> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-d9a536b elementor-section-stretched elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible data-idd9a536b data-element_typesection data-settings{"stretch_section":"section-stretched","animation":"fadeIn"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-d0f7471 data-idd0f7471 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-7cdffee elementor-invisible elementor-widget elementor-widget-image data-id7cdffee data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/unsere-kueche/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/kueche-p7zrj33pghdiztjh9fjspkpou2jl8iirfsentgcse0.jpg titlekueche altkueche loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Unsere Küche/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-78f7d1a data-id78f7d1a data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-68e430d elementor-invisible elementor-widget elementor-widget-image data-id68e430d data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/vieles-rund-ums-kraut/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/kraut-p7zrhr5xrxjwjph41cttoet6jf3vby8g974wccbv7c.jpg titlekraut altkraut loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Alles rund ums Kraut/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-5a13b60 data-id5a13b60 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-164ad44 elementor-invisible elementor-widget elementor-widget-image data-id164ad44 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/unser-seminarraum/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/tagung-p7zrhwsywxrmhd8x4f9l3ddy3qc2m4uu9z1t803i60.jpg titletagung alttagung loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Unser Seminarraum/figcaption> /figure> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-01e47d2 elementor-section-stretched elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible data-id01e47d2 data-element_typesection data-settings{"stretch_section":"section-stretched","animation":"fadeIn"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-efca94d data-idefca94d data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-8bdd70c elementor-invisible elementor-widget elementor-widget-image data-id8bdd70c data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/feiern-bei-uns/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/feiern-p7zriflqpmhcxkhm2ne4h8n5zfrew2xh0k3itjbmpk.jpg titlefeiern altfeiern loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Feiern bei uns/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e5e4030 data-ide5e4030 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-0015c4d elementor-invisible elementor-widget elementor-widget-image data-id0015c4d data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://hotel-kreuz.de/jahresprogramm-2024/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/MM5_9966-p7zrjud0yoeucifvu9bz7vu228t8fqiz7jbqqh8ddk.jpeg titleMM5_9966 altMM5_9966 loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Unser Jahresprogramm/figcaption> /figure> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-56de916 data-id56de916 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-5c06fa1 elementor-invisible elementor-widget elementor-widget-image data-id5c06fa1 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeimage.default> div classelementor-widget-container> figure classwp-caption> a hrefhttp://Hotel-kreuz.de/gutscheine-geschenke/> img decodingasync srchttps://www.hotel-kreuz.de/wp-content/uploads/elementor/thumbs/gutscheine-scaled-p7zrirtn6gy34hzv3ao9vnk5pg36o59ze8ku24tigo.jpg titlegutscheine altgutscheine loadinglazy /> /a> figcaption classwidget-image-caption wp-caption-text>Gutscheine & Geschenke/figcaption> /figure> /div> /div> /div> /div> /div> /section> /div> /div>!-- .entry-content --> /article>!-- #post-6 --> /main>!-- #main --> /div>!-- #primary --> /div>!-- #content --> footer idcolophon classsite-footer> nav aria-labelUntermenü classfooter-navigation> ul classfooter-navigation-wrapper> li idmenu-item-19 classmenu-item menu-item-type-custom menu-item-object-custom social-item menu-item-19>a hrefhttps://www.facebook.com/Hotel-Landgasthof-KREUZ-210548179085853/>svg classsvg-icon width24 height24 aria-hiddentrue roleimg focusablefalse viewBox0 0 24 24 version1.1 xmlnshttp://www.w3.org/2000/svg>path dM12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z>/path>/svg>span classscreen-reader-text>Facebook/span>/a>/li>li idmenu-item-21 classmenu-item menu-item-type-custom menu-item-object-custom social-item menu-item-21>a hrefhttps://www.instagram.com/kreuz_mattenhaus/>svg classsvg-icon width24 height24 aria-hiddentrue roleimg focusablefalse viewBox0 0 24 24 version1.1 xmlnshttp://www.w3.org/2000/svg>path dM12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z>/path>/svg>span classscreen-reader-text>Instagram/span>/a>/li>li idmenu-item-22 classmenu-item menu-item-type-custom menu-item-object-custom social-item menu-item-22>a hrefmailto:info@hotel-kreuz.de>svg classsvg-icon width24 height24 aria-hiddentrue roleimg focusablefalse viewBox0 0 24 24 version1.1 xmlnshttp://www.w3.org/2000/svg>path dM20,4H4C2.895,4,2,4.895,2,6v12c0,1.105,0.895,2,2,2h16c1.105,0,2-0.895,2-2V6C22,4.895,21.105,4,20,4z M20,8.236l-8,4.882 L4,8.236V6h16V8.236z>/path>/svg>span classscreen-reader-text>E-Mail/span>/a>/li>li idmenu-item-883 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-883>a hrefhttps://www.hotel-kreuz.de/impressum/>span>Impressum/span>/a>/li>li idmenu-item-884 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-884>a hrefhttps://www.hotel-kreuz.de/datenschutz/>span>Datenschutz/span>/a>/li>li idmenu-item-1232 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1232>a hrefhttps://www.hotel-kreuz.de/anfahrt/>span>Öffnungszeiten & Anfahrt/span>/a>/li> /ul>!-- .footer-navigation-wrapper --> /nav>!-- .footer-navigation --> div classsite-info> div classsite-name> /div>!-- .site-name --> div classpowered-by> Powered by a hrefhttps://de.wordpress.org/>WordPress/a>. /div>!-- .powered-by --> /div>!-- .site-info --> /footer>!-- #colophon -->/div>!-- #page -->!--googleoff: all-->div idcookie-law-info-bar data-nosnippettrue>span>div classcli-bar-container cli-style-v2>div classcli-bar-message>We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies./div>div classcli-bar-btn_container>a rolebutton classcli_settings_button stylemargin:0px 10px 0px 5px>Cookie settings/a>a rolebutton data-cli_actionaccept idcookie_action_close_header classmedium cli-plugin-button cli-plugin-main-button cookie_action_close_header cli_action_button wt-cli-accept-btn>ACCEPT/a>/div>/div>/span>/div>div idcookie-law-info-again data-nosnippettrue>span idcookie_hdr_showagain>Manage consent/span>/div>div classcli-modal data-nosnippettrue idcliSettingsPopup tabindex-1 roledialog aria-labelledbycliSettingsPopup aria-hiddentrue> div classcli-modal-dialog roledocument> div classcli-modal-content cli-bar-popup> button typebutton classcli-modal-close idcliModalClose> svg class viewBox0 0 24 24>path dM19 6.41l-1.41-1.41-5.59 5.59-5.59-5.59-1.41 1.41 5.59 5.59-5.59 5.59 1.41 1.41 5.59-5.59 5.59 5.59 1.41-1.41-5.59-5.59z>/path>path dM0 0h24v24h-24z fillnone>/path>/svg> span classwt-cli-sr-only>Schließen/span> /button> div classcli-modal-body> div classcli-container-fluid cli-tab-container> div classcli-row> div classcli-col-12 cli-align-items-stretch cli-px-0> div classcli-privacy-overview> h4>Privacy Overview/h4> div classcli-privacy-content> div classcli-privacy-content-text>This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience./div> /div> a classcli-privacy-readmore aria-labelMehr anzeigen rolebutton data-readmore-textMehr anzeigen data-readless-textWeniger anzeigen>/a> /div> /div> div classcli-col-12 cli-align-items-stretch cli-px-0 cli-tab-section-container> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetnecessary data-togglecli-toggle-tab> Necessary /a> div classwt-cli-necessary-checkbox> input typecheckbox classcli-user-preference-checkbox idwt-cli-checkbox-necessary data-idcheckbox-necessary checkedchecked /> label classform-check-label forwt-cli-checkbox-necessary>Necessary/label> /div> span classcli-necessary-caption>immer aktiv/span> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idnecessary> div classwt-cli-cookie-description> Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.table classcookielawinfo-row-cat-table cookielawinfo-winter>thead>tr>th classcookielawinfo-column-1>Cookie/th>th classcookielawinfo-column-3>Dauer/th>th classcookielawinfo-column-4>Beschreibung/th>/tr>/thead>tbody>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checbox-analytics/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category Analytics./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checbox-functional/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category Functional./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checbox-others/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category Other./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checkbox-necessary/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category Necessary./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>cookielawinfo-checkbox-performance/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category Performance./td>/tr>tr classcookielawinfo-row>td classcookielawinfo-column-1>viewed_cookie_policy/td>td classcookielawinfo-column-3>11 months/td>td classcookielawinfo-column-4>The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data./td>/tr>/tbody>/table> /div> /div> /div> /div> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetfunctional data-togglecli-toggle-tab> Functional /a> div classcli-switch> input typecheckbox idwt-cli-checkbox-functional classcli-user-preference-checkbox data-idcheckbox-functional /> label forwt-cli-checkbox-functional classcli-slider data-cli-enableAktiviert data-cli-disableDeaktiviert>span classwt-cli-sr-only>Functional/span>/label> /div> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idfunctional> div classwt-cli-cookie-description> Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features. /div> /div> /div> /div> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetperformance data-togglecli-toggle-tab> Performance /a> div classcli-switch> input typecheckbox idwt-cli-checkbox-performance classcli-user-preference-checkbox data-idcheckbox-performance /> label forwt-cli-checkbox-performance classcli-slider data-cli-enableAktiviert data-cli-disableDeaktiviert>span classwt-cli-sr-only>Performance/span>/label> /div> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idperformance> div classwt-cli-cookie-description> Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors. /div> /div> /div> /div> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetanalytics data-togglecli-toggle-tab> Analytics /a> div classcli-switch> input typecheckbox idwt-cli-checkbox-analytics classcli-user-preference-checkbox data-idcheckbox-analytics /> label forwt-cli-checkbox-analytics classcli-slider data-cli-enableAktiviert data-cli-disableDeaktiviert>span classwt-cli-sr-only>Analytics/span>/label> /div> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idanalytics> div classwt-cli-cookie-description> Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc. /div> /div> /div> /div> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetadvertisement data-togglecli-toggle-tab> Advertisement /a> div classcli-switch> input typecheckbox idwt-cli-checkbox-advertisement classcli-user-preference-checkbox data-idcheckbox-advertisement /> label forwt-cli-checkbox-advertisement classcli-slider data-cli-enableAktiviert data-cli-disableDeaktiviert>span classwt-cli-sr-only>Advertisement/span>/label> /div> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idadvertisement> div classwt-cli-cookie-description> Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads. /div> /div> /div> /div> div classcli-tab-section> div classcli-tab-header> a rolebutton tabindex0 classcli-nav-link cli-settings-mobile data-targetothers data-togglecli-toggle-tab> Others /a> div classcli-switch> input typecheckbox idwt-cli-checkbox-others classcli-user-preference-checkbox data-idcheckbox-others /> label forwt-cli-checkbox-others classcli-slider data-cli-enableAktiviert data-cli-disableDeaktiviert>span classwt-cli-sr-only>Others/span>/label> /div> /div> div classcli-tab-content> div classcli-tab-pane cli-fade data-idothers> div classwt-cli-cookie-description> Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet. /div> /div> /div> /div> /div> /div>/div> /div> div classcli-modal-footer> div classwt-cli-element cli-container-fluid cli-tab-container> div classcli-row> div classcli-col-12 cli-align-items-stretch cli-px-0> div classcli-tab-footer wt-cli-privacy-overview-actions> a idwt-cli-privacy-save-btn rolebutton tabindex0 data-cli-actionaccept classwt-cli-privacy-btn cli_setting_save_button wt-cli-privacy-accept-btn cli-btn>SPEICHERN & AKZEPTIEREN/a> /div> /div> /div> /div> /div> /div> /div>/div>div classcli-modal-backdrop cli-fade cli-settings-overlay>/div>div classcli-modal-backdrop cli-fade cli-popupbar-overlay>/div>!--googleon: all-->script typetext/javascript> (function () { document.querySelector(.site-info).prepend(document.querySelector(.footer-navigation)); document.querySelector(.site-name).remove(); }());/script>script>document.body.classList.remove(no-js);/script> script> if ( -1 ! navigator.userAgent.indexOf( MSIE ) || -1 ! navigator.appVersion.indexOf( Trident/ ) ) { document.body.classList.add( is-IE ); } /script> script> (function() { document.addEventListener( click, function( event ) { if ( event.target.hash && event.target.hash.includes( # ) && ! document.getElementById( site-navigation ).contains( event.target ) ) { var mobileButton document.getElementById( primary-mobile-menu ); twentytwentyoneToggleAriaExpanded( mobileButton ); } } ); })(); /script> script typetext/javascript> const lazyloadRunObserver () > { const lazyloadBackgrounds document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver new IntersectionObserver( ( entries ) > { entries.forEach( ( entry ) > { if ( entry.isIntersecting ) { let lazyloadBackground entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( e-lazyloaded ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: 200px 0px 200px 0px } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) > { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events DOMContentLoaded, elementor/lazyload/observe, ; events.forEach( ( event ) > { document.addEventListener( event, lazyloadRunObserver ); } ); /script> script srchttps://www.hotel-kreuz.de/wp-content/plugins/contact-form-7/includes/swv/js/index.js idswv-js>/script>script idcontact-form-7-js-translations>( function( domain, translations ) { var localeData translations.locale_data domain || translations.locale_data.messages; localeData.domain domain; wp.i18n.setLocaleData( localeData, domain );} )( contact-form-7, {translation-revision-date:2024-11-18 03:02:02+0000,generator:GlotPress\/4.0.1,domain:messages,locale_data:{messages:{:{domain:messages,plural-forms:nplurals2; pluraln ! 1;,lang:de},This contact form is placed in the wrong place.:Dieses Kontaktformular wurde an der falschen Stelle platziert.,Error::Fehler:}},comment:{reference:includes\/js\/index.js}} );/script>script idcontact-form-7-js-before>var wpcf7 { api: { root: https:\/\/www.hotel-kreuz.de\/wp-json\/, namespace: contact-form-7\/v1 }, cached: 1};/script>script srchttps://www.hotel-kreuz.de/wp-content/plugins/contact-form-7/includes/js/index.js idcontact-form-7-js>/script>script srchttps://www.hotel-kreuz.de/wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js idtwenty-twenty-one-responsive-embeds-script-js>/script>script srchttps://www.hotel-kreuz.de/wp-content/plugins/twentig/dist/js/classic/twentig-twentytwentyone.js idtwentig-twentyone-js>/script>script srchttps://www.hotel-kreuz.de/wp-content/plugins/ml-slider/assets/sliders/flexslider/jquery.flexslider.min.js idmetaslider-flex-slider-js>/script>script idmetaslider-flex-slider-js-after>var metaslider_1296 function($) {$(#metaslider_1296).addClass(flexslider); $(#metaslider_1296).flexslider({ slideshowSpeed:4501, animation:fade, controlNav:false, directionNav:true, pauseOnHover:true, direction:horizontal, reverse:false, keyboard:1, touch:1, animationSpeed:600, prevText:Previous, nextText:Next, smoothHeight:false, fadeFirstSlide:false, slideshow:true, pausePlay:false }); $(document).trigger(metaslider/initialized, #metaslider_1296); }; jQuery(document).ready(function($) { $(.metaslider).attr(tabindex, 0); $(document).on(keyup.slider, function(e) { }); }); var timer_metaslider_1296 function() { var slider !window.jQuery ? window.setTimeout(timer_metaslider_1296, 100) : !jQuery.isReady ? window.setTimeout(timer_metaslider_1296, 1) : metaslider_1296(window.jQuery); }; timer_metaslider_1296();/script>script idmetaslider-script-js-extra>var wpData {baseUrl:https:\/\/www.hotel-kreuz.de};/script>script srchttps://www.hotel-kreuz.de/wp-content/plugins/ml-slider/assets/metaslider/script.min.js idmetaslider-script-js>/script>script srchttps://www.hotel-kreuz.de/wp-content/plugins/elementor/assets/js/webpack.runtime.js idelementor-webpack-runtime-js>/script>script srchttps://www.hotel-kreuz.de/wp-content/plugins/elementor/assets/js/frontend-modules.js idelementor-frontend-modules-js>/script>script srchttps://www.hotel-kreuz.de/wp-includes/js/jquery/ui/core.js idjquery-ui-core-js>/script>script idelementor-frontend-js-before>var elementorFrontendConfig {environmentMode:{edit:false,wpPreview:false,isScriptDebug:true},i18n:{shareOnFacebook:Auf Facebook teilen,shareOnTwitter:Auf Twitter teilen,pinIt:Anheften,download:Download,downloadImage:Bild downloaden,fullscreen:Vollbild,zoom:Zoom,share:Teilen,playVideo:Video abspielen,previous:Zur\u00fcck,next:Weiter,close:Schlie\u00dfen,a11yCarouselPrevSlideMessage:Previous slide,a11yCarouselNextSlideMessage:Next slide,a11yCarouselFirstSlideMessage:This is the first slide,a11yCarouselLastSlideMessage:This is the last slide,a11yCarouselPaginationBulletMessage:Go to slide},is_rtl:false,breakpoints:{xs:0,sm:480,md:768,lg:1025,xl:1440,xxl:1600},responsive:{breakpoints:{mobile:{label:Mobile Portrait,value:767,default_value:767,direction:max,is_enabled:true},mobile_extra:{label:Mobile Landscape,value:880,default_value:880,direction:max,is_enabled:false},tablet:{label:Tablet Portrait,value:1024,default_value:1024,direction:max,is_enabled:true},tablet_extra:{label:Tablet Landscape,value:1200,default_value:1200,direction:max,is_enabled:false},laptop:{label:Laptop,value:1366,default_value:1366,direction:max,is_enabled:false},widescreen:{label:Breitbild,value:2400,default_value:2400,direction:min,is_enabled:false}},hasCustomBreakpoints:false},version:3.26.3,is_static:false,experimentalFeatures:{additional_custom_breakpoints:true,e_swiper_latest:true,e_nested_atomic_repeaters:true,e_onboarding:true,e_css_smooth_scroll:true,home_screen:true,landing-pages:true,nested-elements:true,editor_v2:true,link-in-bio:true,floating-buttons:true},urls:{assets:https:\/\/www.hotel-kreuz.de\/wp-content\/plugins\/elementor\/assets\/,ajaxurl:https:\/\/www.hotel-kreuz.de\/wp-admin\/admin-ajax.php,uploadUrl:https:\/\/www.hotel-kreuz.de\/wp-content\/uploads},nonces:{floatingButtonsClickTracking:7556d204e8},swiperClass:swiper,settings:{page:,editorPreferences:},kit:{active_breakpoints:viewport_mobile,viewport_tablet,global_image_lightbox:yes,lightbox_enable_counter:yes,lightbox_enable_fullscreen:yes,lightbox_enable_zoom:yes,lightbox_enable_share:yes,lightbox_title_src:title,lightbox_description_src:description},post:{id:6,title:Kreuz%20Mattenhaus%20%E2%80%93%20Hotel-Landgasthof,excerpt:,featuredImage:false}};/script>script srchttps://www.hotel-kreuz.de/wp-content/plugins/elementor/assets/js/frontend.js idelementor-frontend-js>/script>/body>/html>!-- Cached by WP-Optimize - https://getwpo.com - Last modified: 28. December 2024 06:04 (Europe/Berlin UTC:2) -->
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]